answersLogoWhite

0

There are different sizes of stings and also some strings are made form different materials.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you wind trimming cord for an electric string trimmer?

I've only had gas trimmers but all trimmers should be the same, wind the string in the opposite direction the trimmer head spins. If the head spins cloakwise then wrap the string counter-cloakwise.


Do all trimmers come with a mini comb?

Not all trimmers come with a comb,it is an accessory with some trimmers.


Who makes craftsman hedge trimmers?

I was told by a Sears employee, who works in the outdoor power equipment section, that all Craftsman yard tools are manufactured by someone else. The Craftsman logo is just a brand that is placed on another companie's tool in hopes of increasing sales. He told me that Craftsman string trimmers are made by Husqvarna.


Do nose trimmers hurt?

No, they do not hurt if used properly. When using, be sure to read the directions for all electric nose-hair trimmers.


Do stihl trimmers rotate clockwise or counterclockwise?

ALL Stihl straight shaft trimmers rotate counter clockwise. ALL Stihl curved shaft trimmers rotate clockwise. This info is found on the Stihl FAQ page.


What do string and vector and array all inherit from that has the size method so you can take it as an argument?

string, vector and array do not have a common base class. Overload your function to accept either a string, a vector or an array.


What fishes can be fished by lures?

it depends on the size of the fish but pretty much all the fish can be fished by lures but all you need is different size lures and for some lures you may need a thicker string


Is violin the highest string instrument?

Yes, the E string is the highest string out of of all the string instruments.


String to matrix converting matlab code?

Here is an example code snippet in MATLAB that converts a string into a matrix: str = '123456789'; % input string numChars = length(str); % number of characters in the string matrixSize = ceil(sqrt(numChars)); % calculate the size of the resulting matrix % pad the string with zeros to make it divisible by the matrix size str = [str, num2str(zeros(1, matrixSize^2 - numChars))]; % reshape the string into a matrix matrix = reshape(str, matrixSize, matrixSize); This code takes an input string and calculates the size of the matrix needed to store all the characters. It then pads the string with zeros to make it divisible by the matrix size. Finally, it uses the reshape function to convert the string into a matrix.


What phrases use the metaphor 'string of'?

The metaphor 'string of' is widely used in all areas of life, in all disciplines. For examples:jewelry - a string of pearlsreligion - a string of beads (ex. a rosary)geology - a string of islandsscience/biology - a string of amino acids


Do you have to feel the IUD string all the time?

No, you do not have to feel the IUD string all the time.


What method of the string class removes all spaces from the beginning and end of a string object?

String a=" Suraj "; String t=a.trim(); this will remove all the leading and trailing white spaces