answersLogoWhite

0

What are strings?

User Avatar

Anonymous

7y ago
Updated: 9/5/2021

Some stringed instruments contain a C-string, producing sound from the string creates the note C, so it is called C-string.

User Avatar

Ethel Nitzsche

Lvl 10
3y ago

What else can I help you with?

Related Questions

How many strings does the veena have?

It has 7 strings 4 main strings and 3 thala strings


How many strings does veena have?

It has 7 strings 4 main strings and 3 thala strings


Is a sitar is fiber strings or steel strings?

it is uses steel strings


How do you start s'getti strings?

First you get four strings of s'getti strings then fold 2 strings and then you take the third string and put it under one of the strings and do the same as the other one and then pull all four strings and that's how start s'getti strings.


Do frogs have strings?

no frogs do not have strings


What other types of strings beside nylon are used for guitars?

There are two different kind of strings. There are nylon strings and steel strings. Nylon strings are found on acoustic guitars while steel strings are common to find on electronic guitars.


How many strings are there in a guitar?

There are fours strings.


Why is the violin in the strings family?

Because it has strings.


When was No Strings created?

No Strings was created in 1962.


What do the colours on the strings of a harp mean?

Harp strings are color coded so that the player can identify what strings to pluck. The C strings are red and the F strings are black, arranged in octaves like a piano.


How any strings are on a guitar?

A normal Acoustic/Electric guitar has 6 strings, and a normal bass guitar has 4 strings. There are also guitars with more strings, i.e. a bass guitar with 5 strings.


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] ); }