answersLogoWhite

0


Best Answer

I'm not a doctor, but I have been going through a lot of testing and diagnoses since October 2008 when I had a tear in my left shoulder (rotator cuff). I have always had problems with headaches and neck aches, but in March 2009 I started having Back pain too. After months of going through the runaround, I have found out I have 3 disc problems (a herniated disc in my lower back L5-S1, a herniated disc in my mid/upper back at T8-T9, and either a degenerated, torn, or herniated disc in my neck at C5-C6.)

Annual tear just means the outer portion of the disc is torn, which allows fluid to leak out and put pressure on the spinal cord and nerve outlets which causes pain in various places and may even cause a decrease in function in various parts of the body. I don't know exactly what spondylotic disease is but I believe it affects the vertebrae.

Depending on what's torn in your shoulder, it's going to require lengthy physical therapy, surgery, or both.

Ask some questions when you visit your doctors.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Just had mri says annular tear multiple disc protrusions c5 c6 impenges on cord multilevel spindylotic disease and lft shoulder has a tear also does anyone know what this means and can it be fixed?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is multilevel threading?

In multilevel threading it has multiple kernals and multiple users.


What is a multilevel timeline?

it is a timeline that has multiple other timelines in it


Different types of inheritances?

Single Inheritance Multiple Inheritance Multilevel Inheritance


What is the Difference between multiple inheritance and multilevel inheritance in asp.net?

Multiple inheritance, as the name 'multiple' suggests, is one where more than one(multiple) super class is inherited by one sub-class. It can be represented as:A B C\ | /DOn the other hand, in case of multilevel inheritance; the superclass is inherited by a sub-class which is in turn inherited by another class leading to the different level. It can be represented as:A|B|CHowever in asp, multiple inheritance is not supported.


What are the different types of inheritence?

there are several type of inheritance are exist like 1. single inheritance 2. double inheritance 3. multiple 4. multilevel 5. heirarchical inheritance


What is the Difference between multilevel and multiple inheritance?

Multiple Inheritance : we can inherit more than one class in the same class. Multi-Level Inheritance: where one class can inherit only one base class and the derived class can become base class of some other class.


How do you implimenting multilevel inheritance in java?

In java we can implement more than one interfaces for a single class but we can't extend a class to more than one super class so ,java indirectly supports multiple inheritance.


Specialization form of inheritance?

Inheritance refers to the concept by which the features from one class can be extended/made available in other classes. Java supports 3 forms of inheritance * Single Inheritance * Multiple Inheritance * Multilevel Inheritance (Can be implemented using interfaces)


What is the Difference between multiple inheritance and multilevel inheritance in java?

Multilevel InheritanceA Scenario where one class is inheriting/extending the bahavior of another class which in turn is inheriting behavior from yet another class.Ex: public class Automobile {…}Public class Car extends Automobile {…}Public class Ferrari extends Car {…}This multilevel inheritance actually has no limitations on the number of levels it can go. So as far as java goes, it is limitless. But for maintenance and ease of use sakes it is better to keep the inheritance levels to a single digit number.Multiple InheritanceActually, java does not support multiple inheritance. You can achieve partial multiple inheritance using interfaces but java is not like C or C++ where you can do direct multiple inheritance. However, you can achieve partial multiple inheritance with the help of interfaces.Ex: public class FerrariF12011 extends Ferrari implements Car, Automobile {…}And this is under the assumption that Car and Automobile are interfaces.Here if you see, though you don't inherit concrete code from the Car or the Automobile interface, you do inherit skeleton methods that determine the way your class eventually behaves and hence this can be considered partial Multiple Inheritance.


What are the differences between multilevel inverters?

Inverters convert DC power into AC power through waves called either sine waves or modified sine waves. Sine waves are the waves that are typically found in power from a power plant. Modified sine waves are made to simulate sine waves. Inverters with modified sine waves work well for backup power in houses and are much less expensive. Although there are several types of inverters, all standard inverters use only one switch, or in other words, one power circuit. Multilevel inverters are a a source of high power, often used in industrial applications and can use either sine or modified sine waves. Instead of using one converter to convert an AC current into a DC current, a multilevel inverter uses a series of semiconductor power converters (usually two to three) thus generating higher voltage. While with an inverter you would transfer energy with the flip of one switch, with a multilevel inverter you would have to flip several switches, each switch requiring a circuit. These multiple switches and circuits usually make multilevel inverters more expensive than inverters.


Why does Java support multilevel inheritance?

Because it is one of the most important and widely used inheritance concepts in Java. In multi level inheritance a class directly inherits features from one class and indirectly inherits features form other classes that are in the inheritance hierarchy.


Class hierarchies and multiple level of inheritance?

Multilevel InheritanceA Scenario where one class is inheriting/extending the bahavior of another class which in turn is inheriting behavior from yet another class.Ex: public class Automobile {…}Public class Car extends Automobile {…}Public class Ferrari extends Car {…}This multilevel inheritance actually has no limitations on the number of levels it can go. So as far as java goes, it is limitless. But for maintenance and ease of use sakes it is better to keep the inheritance levels to a single digit number.