answersLogoWhite

0


Best Answer

Yes, if you slam it hard enough.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you break your finger by slamming in a violin case?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How to Buy a Durable Case For Your Violin?

If you own a violin, you know how precious it is to take good care of it. In order to keep your violin clean and safe, it is necessary to place it in a durable violin case. If you don’t have a violin case or your violin case is already worn out, you need to buy a durable case to protect your violin and to make it last long. Actually, there are a lot of choices when it comes to violin cases, and these can range from stripped down designs and bare-minimum designs that help in protecting your violin, to elaborate designs that are specially-created to give your violin maximum protection against various conditions. To give you some ideas, here are some tips on how to buy a durable case for your violin. • Consider your budget. Different designs of violin cases vary in prices. You need to know how much you are willing to spend for your case. Custom-fitted cases are the most expensive, but they can also provide the maximum protection for your violin. If you are willing to spend a little money on a durable case for your violin, then it would be nice to have a violin case that is created specifically for your violin. • Know the environmental conditions where your violin will most likely be exposed. If your violin will be exposed to extreme changes in temperature, you should consider buying a violin case that has a dehumidifier. • Choose the size and the weight of the violin case. You need to choose the size and the weight of the violin case that is comfortable for you to carry. Violin cases can be purchased at local music stores. However, If you don’t have a lot of time to shop for violin cases, you can try looking for violin cases online. There are a lot of designs to choose from, so each different type should be considered before purchase.


What is a violin outfit?

When you see someone refer to a "violin outfit," it means they are talking about both the violin and the bow. This sometimes includes the case as well. When purchasing a violin online, you want to make sure you're buying a violin outfit with a case, and not just a violin by itself.


What are the release dates for Violin Case - 2012?

Violin Case - 2012 was released on: USA: 16 March 2012


What holds the strings on the violin?

Violin case- stores the violin for travel violin stand- displays a violin


How do you open a violin case and you don't have a key?

Locksmith, violin shop, screwdriver.


What actors and actresses appeared in Violin Case - 2012?

The cast of Violin Case - 2012 includes: Tom Ellison Kane as Burgher


What come with a violin?

depends on what you bargain for. Normally: violin, bow, case and maybe rosin


What is a violin case usually made out of?

There are many different violin case materials that are used, depending on the manufacturer of the case. Often made out of nylon and leather, but depends on your manufacturer.


What are the release dates for The Fresh Beat Band - 2009 Case of the Missing Violin?

The Fresh Beat Band - 2009 Case of the Missing Violin was released on: USA: 11 March 2011


How do you write a c program to print words when numbers are given?

void print_num_as_word (unsigned num) { switch (num) { case 0: printf ("zero"); break; case 1: printf ("one"); break; case 2: printf ("two"); break; case 3: printf ("three"); break; case 4: printf ("four"); break; case 5: printf ("five"); break; case 6: printf ("six"); break; case 7: printf ("seven"); break; case 8: printf ("eight"); break; case 9: printf ("nine"); break; } }


What type of noun is finger?

Finger is a common noun. Unless someone's name is finger, in which case it is proper


Write program to convert a string in lower case without using library function?

It is not certain if the question asked to convert lower case to upper case, or upper case to lower case. This answer assumes the latter. You could easily change this around for the former. ConvertToLower (char*psz) { while (*psz != '\0') { switch (*psz) { case 'A': *psz = 'a'; break; case 'B': *psz = 'b'; break; case 'C': *psz = 'c'; break; case 'D': *psz = 'd'; break; case 'E': *psz = 'e'; break; case 'F': *psz = 'f'; break; case 'G': *psz = 'g'; break; case 'H': *psz = 'h'; break; case 'I': *psz = 'i'; break; case 'J': *psz = 'j'; break; case 'K': *psz = 'k'; break; case 'L': *psz = 'l'; break; case 'M': *psz = 'm'; break; case 'N': *psz = 'n'; break; case 'O': *psz = 'o'; break; case 'P': *psz = 'p'; break; case 'Q': *psz = 'q'; break; case 'R': *psz = 'r'; break; case 'S': *psz = 's'; break; case 'T': *psz = 't'; break; case 'U': *psz = 'u'; break; case 'V': *psz = 'v'; break; case 'W': *psz = 'w'; break; case 'X': *psz = 'x'; break; case 'Y': *psz = 'y'; break; case 'Z': *psz = 'z'; break; } psz++; } Warning. Do not be tempted to replace the switch statement with ... if (*psz >= 'A' && *psz <= 'Z') *psz += 32; ... because that will only work on ASCII implementations, and it is most definitely not portable, such as in EBCDIC implementations.