answersLogoWhite

0

2 you can use more if you want to but the minimum is 2

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How many strings do you need to do a box in lanyard?

you would need four


What kind of guitar strings do I need for my guitar?

The type of guitar strings you need depends on the type of guitar you have. Acoustic guitars typically use steel strings, while classical guitars use nylon strings. Electric guitars use steel strings as well. Make sure to choose the right gauge (thickness) of strings for your playing style and preference.


What are celery strings?

i need information on celery strings


How do you start a box lanyard with 4 strings and no keychains?

To make a box, you need two strings. If you start a lanyard with three strings and try to make a box, it will turn into a triangle.


How many pieces of string do you need for the Chinese staircase?

you can use as many strings as you want lol one day i used 10!


What are the parts of racquets?

The rim, the strings, the grip... You need to replace the strings and grip very often.


Are my guitar strings loose and in need of tightening?

To check if your guitar strings are loose and need tightening, press down on the 12th fret of each string. If there is a lot of space between the string and the fretboard, the strings may be loose and need to be tightened.


What causes the sounds that come from guitars and pianos?

Both guitars and pianos have strings. Striking the strings causes them to vibrate, which makes the sound that you hear.


How do you raise the pitch in an electric guitar?

The tuning pegs need to be turned to tighten the strings. Tighter strings will raise the pitch. The strings need to harmonize with one another, a guitar tuner is a tool that can aid in making all of the strings tuned to the key that you desire.


Why are my guitar strings hard to press?

Your guitar strings may be hard to press because they are too high off the fretboard, the strings are old and need to be replaced, or the guitar neck may need adjustment.


How hard do you need to press the guitar strings to produce clear and crisp notes?

To produce clear and crisp notes on a guitar, you need to press the strings firmly against the frets with just enough pressure to make them touch the fretboard without pressing too hard.


Write javascript code to display a list of strings?

You need to put the strings in an array, and then loop through the array to output the strings. Something like this would be a simple example: ---------------- var strings = ["s1","s2","s3"]; for ( var i in strings ) { document.write( strings[i] ); }