answersLogoWhite

0

To extend the range of your double bass, you can add an E string extension, which allows you to play lower notes by providing an extra string tuned to E.

User Avatar

AnswerBot

4mo ago

What else can I help you with?

Related Questions

How do you tune a you bass?

The standard tuning for double bass is in fourths with the highest string tuned to G two octaves below middle C (actually an octave and a fourth below middle C to be precise which would be the bottom line on the Bass (or F) clef. The remaining strings of course would be D, A, and E below this G string. It is common for orchestral players to extend the length of the low E string with a fingerboard extension to extend down to a C. In addition, it is not uncommon to find find string basses in orchestra especially in Germany and Austria. In this case the lowest string is tuned to a B below the low E string or sometimes to the C below.


How many notes can a bass play?

Low E (The 5th white key from the left on a piano) on a standard 4 string double bass. Some double basses have a Low C extension on the E string, allowing it to play down to a low C. Five string double basses can go down to a low B.


What is the lowest string on a double bass?

The lowest string on a four string double bass is an E string. If you have a fairly rare five string double bass then the lowest fifth string is a B string.


How do you play a sharp on cello?

Do a backwards extension on the A string.


How can I connect string lights together to create a longer strand of lights?

To connect string lights together to make a longer strand, you can use extension cords or connectors specifically designed for string lights. Simply plug the male end of one string into the female end of another to extend the length. Make sure to follow the manufacturer's instructions and avoid overloading the circuit.


How many strings does a double base have?

the double bass has 4 strings G string D string A string and E string.


Is Double bass a string instrument?

The Double Bass is a string instrument. Other instruments in the orchestral family of string instruments are the violin, viola and cello.


How does perl interpretor know that string has ended?

A Perl string begins and ends with a delimiter. This can either be a single-quote ('), double-quote (") or user defined quote (q): $single = 'This string is single-quoted'; $double = "This string is double-quoted"; $user = q^This string is delimited by the caret symbol^


Is it possible to convert strings in java to double directly?

Not directly. A String is an object, and a double is a primitive data type. To do the conversion you must first convert the String to a Double object (note the capital D in double), then convert that object to a double data type (lowercase d in double). Double is an object, double is a primitive data type. Here's a class that will convert a String to a double:public class StringToDouble{public static void main (String[] arguments) {String s = "100.00";double d = Double.valueOf(s.trim()).doubleValue();System.out.println("double d = " + d);}}


What family is double bass?

String


Whats the lowest member of the string family?

The Double Bass or the Contrabass is the lowest member of the string family.


How do you get value of a string in reverse order in c?

Assume C#, not C: Traditional way: public string Reverse(string s) { if (string.IsNullOrEmpty(s)) return s; // "" or null char[] characters = s.ToCharArray(); Array.Reverse(characters); return new string(characters); } or as an extension method: public static string Reverse(this string s) { if (s == "") return ""; char[] characters = s.ToCharArray(); Array.Reverse(characters); return new string(characters); } The differences of the 2 methods above is on the caller (how to use Reverse()), and they may co-exist: For example: string test = "abc"; string result1 = Reverse(test); // traditional way string result2 = test.Reverse(); // call the extension