Saturday, 7 September 2013

System Programming


System Programming

System Programming : -
In  IT department of a large organization, a technical expert on some or all of the computer's system software (operating systems, networks, DBMSs, etc.). They are responsible for the efficient performance of the computer systems.
In a user organization, systems programmers typically do not write programs, but perform many technical tasks that integrate vendors' software. They also act as technical advisers to systems analysts, application programmers and operations personnel. For example, they would know whether additional tasks could be added to the computer and would recommend conversion to a new operating or database system in order to optimize performance.
Here are few programs which are written  in C LANGUAGE.   This Is the Lab work  of  Sytem Programming.
Q. Write a program to create a menu driven interface for
i) Displaying contents of a file page wise.
ii) Counting Vowels, character and lines in a file
iii) Copying a file.
i) Displaying contents of a file.
Solution.
#include<stdio.h>
#include<conio.h>
void main()
{
FILE *fp;
char ch;
clrscr();
fp=fopen("B1.txt","w");
while(ch!='z')
{
ch=getche();
fputc(ch,fp);
}
fclose(fp);
getch();
}
Output 1

Q.WAP to display contents of file page wise
Solution 
#include<stdio.h>
#include<conio.h>
void main()
{
FILE *sp1,*sp2;
char ch;
sp1=fopen("H1.txt","r");
sp2=fopen("H2.txt","w");
while(ch!=EOF)
{
ch=getc(sp1);
printf("%c",ch);
fputc(ch,sp2);
}
fclose(sp1);
fclose(sp2);
getch();
}
 Output :- 
Program to display contents of file page wise

Q.Write a program for Counting characters in a file
Solution : -
#include<stdio.h>
#include<conio.h>
void main()
{
FILE *fp,*fs,*fs1;
char ch;
clrscr();
fp=fopen("P.txt","w");
while(ch!='*')
{
ch=getche();
fputc(ch,fp);
}
fclose(fp);
fs=fopen("P.txt","r");
fs1=fopen("P 1.txt","w");
while(ch==EOF)
{
ch=getche();
printf("%c",ch);
fputc(ch,fs1);
}
fclose(fs);
fclose(fs1);
getch();
}

program for Counting characters in a file

Q.Write a program to copy the content of one file into another file.
Solution
#include<stdio.h>
#include<conio.h>
void main()
{
FILE *p,*q;
char file1[20],file2[20];
char ch;
clrscr();
printf("\Enter the source file name to be copied:");
gets(file1);
p=fopen(file1,"r");
if(p==NULL)
{
printf("\n Cannot open %s",file1);
getch();
}
printf("\n Enter the destination file name:");
gets(file2);
q=fopen(file2,"w");
if(q==NULL)
{
printf("Cannot open %s",file2);
getch();
}
while((ch=getc(p))!=EOF)
putc(ch,q);
printf("\n COMPLETED");
fclose(p);
fclose(q);
getch();
}

OUTPUT:
program to copy the content of one file into another file.

Q.Write a Menu driven program
Solution
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
FILE *ptr1,*ptr2,*ptr3;
char ch,k;
printf("Enter ur choice \n a for writing data onto file \n b for copying to another file \n c for writng and copying data \n");
k=getche();
switch(k)
{
case'a':
printf("\n Write the contents of the file \n");
ptr1=fopen("navi1.txt","w");
while(ch!='*')
{
ch=getche();
fputc(ch,ptr1);
}
printf("\n Contents have been written to the file");
fclose(ptr1);
break;
case'b':
ptr1=fopen("navi1.txt","r");
ptr2=fopen("navi2.txt","w");
printf("\n The contents that have been copied are: \n");
while(ch!=EOF)
{
ch=fgetc(ptr1);
printf("%c",ch);
fputc(ch,ptr2);
}
fclose(ptr1);
fclose(ptr2);
break;
case'c':
printf("\n Write the contents of the file \n");
ptr1=fopen("navi1.txt","w");
while(ch!='*')
{
ch=getche();
fputc(ch,ptr1);
}
printf("\n The contents have been written to the file");
fclose(ptr1);
ptr2=fopen("navi1.txt","r");
ptr3=fopen("navi2.txt","w");
printf("\n The contents that have been copied are: \n");
while(ch!=EOF)
{
ch=fgetc(ptr2);
printf("%c",ch);
fputc(ch,ptr3);
}
fclose(ptr2);
fclose(ptr3);
break;
default:
printf("\n Wrong input");
break;
}
getch();
}
Output :- 
a Menu driven program

Q.Write a program To Study the algorithm and development of Pass 1 of Assembler
Solution:-
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
void main()
{
Char opcode[10],operand[10],label[10],code[10][10],ch; char mnemonic[10][10]={"START","LDA","STA","LDCH","STCH","END"};
int locctr,start,len,i=0,j=0;
FILE *fp1,*fp2,*fp3;
clrscr();
fp1=fopen("INPUT.DAT","r");
fp2=fopen("SYMTAB.DAT","w");
fp3=fopen("OUT.DAT","w");
fscanf(fp1,"%s%s%s",label,opcode,operand);
if(strcmp(opcode,"START")==0)
{
start=atoi(operand);
locctr=start;
fprintf(fp3,"%s\t%s\t%s\n",label,opcode,operand);
fscanf(fp1,"%s%s%s",label,opcode,operand);
}
else
locctr=0;
while(strcmp(opcode,"END")!=0)
{
fprintf(fp3,"%d",locctr);
if(strcmp(label,"**")!=0)
fprintf(fp2,"%s\t%d\n",label,locctr);
strcpy(code[i],mnemonic[j]);
while(strcmp(mnemonic[j],"END")!=0)
{
if(strcmp(opcode,mnemonic[j])==0)
{
locctr+=3;
break;
}
strcpy(code[i],mnemonic[j]);
j++;
}
if(strcmp(opcode,"WORD")==0)
locctr+=3;
else if(strcmp(opcode,"RESW")==0)
locctr+=(3*(atoi(operand)));
else if(strcmp(opcode,"RESB")==0)
locctr+=(atoi(operand));
else if(strcmp(opcode,"BYTE")==0)
++locctr;
fprintf(fp3,"\t%s\t%s\t%s\n",label,opcode,operand);
fscanf(fp1,"%s%s%s",label,opcode,operand);
}
fprintf(fp3,"%d\t%s\t%s\t%s\n",locctr,label,opcode,operand);
fcloseall();
printf("\n\nThe contents of Input Table :\n\n");
fp1=fopen("INPUT.DAT","r");
ch=fgetc(fp1);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp1);
}
printf("\n\nThe contents of Output Table :\n\n\t");
fp3=fopen("OUT.DAT","r");
ch=fgetc(fp3);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp3);
}
len=locctr-start;
printf("\nThe length of the program is %d.\n\n",len);
printf("\n\nThe contents of Symbol Table :\n\n");
fp2=fopen("SYMTAB.DAT","r");
ch=fgetc(fp2);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp2);
}
fcloseall();
getch();
}
OUTPUT :-
Write a program To Study the algorithm and development of Pass 1 of Assembler

Q.Write a program To Study the algorithm and development of Pass 2 of Assembler.
Solution 
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char a[10],ad[10],label[10],opcode[10],operand[10],symbol[10],ch;    
Int st,diff,i,address,add,len,actual_len,finaddr,prevaddr,j=0;
char mnemonic[15][15]={"LDA","STA","LDCH","STCH"};
char code[15][15]={"33","44","53","57"};
FILE*fp1,*fp2,*fp3,*fp4;
clrscr();
fp1=fopen("ASSMLIST.DAT","w");
fp2=fopen("SYMTAB.DAT","r");
fp3=fopen("INTERMED.DAT","r");
fp4=fopen("OBJCODE.DAT","w");
fscanf(fp3,"%s%s%s",label,opcode,operand);
while(strcmp(opcode,"END")!=0)
{
prevaddr=address;
fscanf(fp3,"%d%s%s%s",&address,label,opcode,operand);
} finaddr=address;
fclose(fp3);
fp3=fopen("INTERMED.DAT","r");
fscanf(fp3,"%s%s%s",label,opcode,operand);
if(strcmp(opcode,"START")==0)
{
fprintf(fp1,"\t%s\t%s\t%s\n",label,opcode,operand);
fprintf(fp4,"H^%s^00%s^00%d\n",label,operand,finaddr);
fscanf(fp3,"%d%s%s%s",&address,label,opcode,operand);
st=address;
diff=prevaddr-st;
fprintf(fp4,"T^00%d^%d",address,diff); }
while(strcmp(opcode,"END")!=0)
{
if(strcmp(opcode,"BYTE")==0)
{
fprintf(fp1,"%d\t%s\t%s\t%s\t",address,label,opcode,operand);
len=strlen(operand);
actuallen=len-3;
fprintf(fp4,"^");
for(i=2;i<(actual_len+2);i++)
{
itoa(operand[i],ad,16);
fprintf(fp1,"%s",ad);
fprintf(fp4,"%s",ad);
}
fprintf(fp1,"\n");
}
elseif(strcmp(opcode,"WORD")==0)
{
len=strlen(operand);
itoa(atoi(operand),a,10);
fprintf(fp1,"%d\t%s\t%s\t%s\t00000%s\n",address,label,opcode,operand,a);
fprintf(fp4,"^00000%s",a);
}
elseif((strcmp(opcode,"RESB")==0)||(strcmp(opcode,"RESW")==0))
fprintf(fp1,"%d\t%s\t%s\t%s\n",address,label,opcode,operand);
else
{
while(strcmp(opcode,mnemonic[j])!=0)
j++;
if(strcmp(operand,"COPY")==0)
fprintf(fp1,"%d\t%s\t%s\t%s\t%s0000\n",address,label,opcode,operand,code[j]);
else
{
rewind(fp2);
fscanf(fp2,"%s%d",symbol,&add);
while(strcmp(operand,symbol)!=0)
fscanf(fp2,"%s%d",symbol,&add);
fprintf(fp1,"%d\t%s\t%s\t%s\t%s%d\n",address,label,opcode,operand,code[j],add);
fprintf(fp4,"^%s%d",code[j],add);
}
}
fscanf(fp3,"%d%s%s%s",&address,label,opcode,operand);
}
fprintf(fp1,"%d\t%s\t%s\t%s\n",address,label,opcode,operand);
fprintf(fp4,"\nE^00%d",st);
printf("\n Intermediate file is converted into object code");
fcloseall();
printf("\n\nThe contents of Intermediate file:\n\n\t");
fp3=fopen("INTERMED.DAT","r");
ch=fgetc(fp3);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp3);
}
printf("\n\nThe contents of Symbol Table :\n\n");
fp2=fopen("SYMTAB.DAT","r");
ch=fgetc(fp2);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp2);
}
printf("\n\nThe contents of Output file :\n\n");
fp1=fopen("ASSMLIST.DAT","r");
ch=fgetc(fp1);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp1);
}
printf("\n\nThe contents of Object code file :\n\n");
fp4=fopen("OBJCODE.DAT","r");
ch=fgetc(fp4);
while(ch!=EOF)
{
printf("%c",ch);
ch=fgetc(fp4);
}
fcloseall();
getch();
}
Output :-
program To Study the algorithm and development of Pass 2 of Assembler.


Note :- * If these programs are not working please let us know our team will try to solve your problems.Please don't panic and consult your teacher first. Your comments are valuable to us. 



|system programming|computer systems programming| in system programming|c system programming| c | systems programming language| systems program |systems programs|

Guitar Lessons For Beginners


Electric_guitar

When ever some plays any instrument  are feet start tapping immediately, we feel very nice and if played in crowd the person gets noticed and many viewers and listeners think i too can become a guitar player, a flute or any other instrument. But it is not very easy to learn this. It is said that
'' Life is too short to learn music ,
But music is a very long journey which never ends "


If you ever wanted to play the guitar but you are too confused  that from where you should start, then this is the right place for you. We have gathered many materials which are effective ,easy and you will learn playing guitar withing few weeks. But there  are few things that you should know before getting started. Those are :-
  • Have patience don't be in a hurry because a seed takes time to become a strong tree.
  • Have a learning attitude,
  • Always be motivated,
  • Try to learn from different places but at the end your motive should be one,
  • Stay focused,
  • Most important Thing  Is IMPLEMENT IMPLEMENT AND IMPLEMENT  

Now by the end of the sessions you will be learning many things and have become a guitarist. It also depends on how much time you devote to your practice.  PRACTICE MAKES THE MAN PERFECT 
Once you have finished this series, feel free to go through the mountains of other beginner guitar lessons here on www.citytimez.com. Feel free to email me if you have any questions.
Good luck and have fun,

Now Lets Get Started

Learn The Basics Of Guitar First :-
The guitar  is a string instrument of the chordophone family consisting of 6 strings E B G D A E ( these are the names of the strings latter you'll know about this ). These strings are of either nylon or steel . The guitar is a string instrument of the chordophone family constructed from wood and strung with either nylon or steel strings. There are three main types of modern acoustic guitar:
  • the classical guitar (nylon-string guitar),
  • the steel-string acoustic guitar,
  • and the archtop guitar.
The tone of an acoustic guitar is produced by the vibration of the strings, which is amplified by the body of the guitar, which acts as a resonating chamber. The classical guitar is often played as a solo instrument using a comprehensive finger picking technique.
We will discuss more about the types of guitar latter on.
Now you know what a guitar is and its types also. Now you are ready to get the lessons.
Before this how would you know which guitar is the best ??

How to Choose Or Buy the correct Guitar ???

Choosing the instrument you play is always an important decision. If you are buying your first guitar, the decision is more difficult because you may not know where to start or what to look for. So, before you do anything, read these friendly words of advice.
First let us dispel the popular, but completely wrong belief that “any guitar will do for learning to play”. Your first guitar should be carefully chosen to be fairly easy to play and tune. It should also be versatile enough for you to be able to play different kinds of music on it.
A you are beginner acoustic guitar will be best for you as it is the basic guitar and every good guitarist have started his glorious journey from this guitar only.

Checklist: Before you buy

  • Check that the fingerboard is straight and the frets all the same height by laying a straight edge over the frets along the fingerboard. Look over the bridge and up along the neck of the guitar to see if it is warped or twisted.
  • Check that the strings are the correct height above the fingerboard. At the ‘nut’ the strings should be about 1/16” (1.5mm) high, and about 1/8” (3mm) high at the 12th fret. If the strings are too high, the guitar will be hard to play. If they are too low, the strings will buzz the frets.
  • Play every note by pressing each string behind every fret with a left hand finger while you pluck the string with your right thumb – each note should sound clearly. Any rattling or buzzing noises when the guitar is played could mean trouble.
  • Look for worn frets on secondhand guitars – particularly the 1st to 5th frets under the 1st, 2nd, and 3rd strings. Some wear is normal, but deep depressions in the frets mean the guitar may be inaccurate, difficult to play and tune, and may buzz unless it is re-fretted.
  • Make sure all six strings are on the guitar. Check each tuning machine by gently turning its peg a little, to if it adjusts the string to which it is attached. Make sure each string is wound in the right direction on the correct tuning machine. If any are incorrect, ask for them to be changed around and the guitar re-tuned. If any strings seem old or worn, ask for a new set to be put on, and the guitar put in tune.
  • Examine the face, bridge, sides, head, neck and heel for cracks or splits. On ‘Classical’ or Round-hole Guitars, there should not be any gaps where the bridge is glued to the face of the guitar. If the guitar is seriously dented or looks as though it may have been dropped or badly repaired, it could be a poor risk.
If still you are confused take someone with you who has a better knowledge of guitar.
Now when you have chosen the right guitar you should be knowing its parts also.
The Image below shows the full and described parts of guitar.:-

acoustic

electric-guitar-parts.jpg


FRET BOARD is the board where the strings are attached and player plucks the string and noise is produced.

fretboard

There are many brand of guitars available in the market from cheaper to the high range. We will tell you afterwards.
As we have told you about the names of the strings E B G D A E previously now let us tell you what they are actually.
This image shows the chords from which songs are originated or played and strings are having different names with different sounds.

Guitar-Lessons-For-Beginners

These are different chords which you will learn afterwards.
Now let us quickly revise what we have learned so far
  • What is guitar??
  • Types of guitar??
  • Names Strings??
  • What are the names of parts of guitar??
  • What is a fret board??
  • What are Chords?? 

Now How to take care of guitar??

A guitar is a delicate thing and can be easily damaged by accident. So when you are not playing it, put it in an a safe place, preferably in it’s case. Always keep it out of the way of clumsy hands and feet, and never leave it on the floor where someone could step on it.
In a closet is always a good place to keep a guitar or out of the way on a stand. It’s not a good idea to lean a guitar against a wall or anywhere else as it could easily fall over, but if there really is no other place stand it upright in a corner between two inside walls with its face towards the corner.
In Hindu Mythology it is said that in every instrument where GODDESS SARASWATI  lives so they worship their instruments, If you believe this then its no harm to worship god.
For now this is it. Next time when you will visit our website www.citytimez.blogspot.com  you will learn how to pluck the strings and other necessary things about guitar with the proper video lessons. Till then keep visiting us and don't forget to comment and share our post.



|guitar|guitar world|guitar chords|bass guitar|play guitar|guitar theory|guitar tips|

AIPMT EXAM


The AIPMT(All India Pre Medical Test) is a national level entrance exam conducted by Central board Of Secondary Education ( CBSE ), Delhi. Through AIPMT exam students can get admission to MBBS and BDS courses in medical colleges across the country. THis exam is based on Physics , Chemistry  and Biology. The process consists of 2 level examination which student has to clear, 1st is the Preliminary and second is the Mains.
The best score in the exam will provide them a good medical college. Here are some suggestions for the students, which will help them to make a good score in AIPMT.
Benefits of AIPMT exam
AIPMT or NEET is a perfect exam for the medical students. It is a one familiar entrance exam for admission into all Medical Colleges in India.  The students does not have to appear in different exam for different colleges, by filling AIPMT  he/ she is illegible for every medical colleges in India.
Preparation for AIPMT
All the students who have a desire to be a doctor they have to prepare for AIPMT exam. The student should start focusing for exam before Class 11th and 12th . If you have done your hard work you will definitely get the fruit of it.
Graceful Study Plan:-
The students require a good study plan for the AIPMT exam. The plan should be centered on significant chapters for the exam and the time they have. The preparations also need to be evaluated repeatedly to notice whether you are on track. With the theory start practicing MCQ's it will help you very much and speed up your ability.
Follow Questions:-
The students should follow previous questions, which will help them in their exam. Now a fully solved infinite question bank is available in the market. Practicing the questions will appear a good advantage to them. Referring to the previous year question paper also help s a lot, and question bank is also available in market and internet.
Make a timetable:-
AIPMT is a very tough exam. However, it can be easy if the students make a timetable. The exam paper consists 3 paper- Physics, Chemistry, and Biology. By devoting equal time in these subjects it will help you a lot. But if you are finding yourself week in particular subject devote more time to that.

For a good preparation of AIPMT exam, you can follow some good books. Like the Biology books- Pradeep’s Biology, SC Verma (Part-1 and 2), MTG (Biology Today) CBSE PMT (Subscription), Dinesh Biology, NCERT- Biology Part 1 and Part 2, Trueman’s Biology, AC Dutta for Botany (Oxford Publication). Physics books are- Physics: CBSE PMT set of 3 Volumes by Anil Aggarwal, HC Verma for Physics, Concept of Competition Physics for CBSE PMT by Aggarwals, NCERT- Physics Part 1 and Part 2. The Chemistry books are- ABC Chemistry, Arihant Organic Chemistry, Dinesh Chemistry, Morrision Boyd for Organic Chemistry, Peter Atkins and Julio de Paula for Physical Chemistry, and NCERT- Chemistry Part 1 and Part 2. All these books will make a good help for the AIPMT candidates.
Go for regular mock test:-
Before giving  AIPMT exam, go for the mock test. At least one month before of the exam go for the regular mock test.It will show you the level where you stand and how much you have learn't. It will also tell you where you are lacking behind and where you have to fous more. Mock test are very helpful as the level of exam is little bit low  compared to AIPMT. The examinar or online mock test is the combination of previous question papers. While setting the pattern of exam they keep in mind that each student can test their knowledge. Online test are very helpful as the test results are declared after few minutes of exam.

Central board Of Secondary Education, CBSE,exam results ,the exam ,examination ,exam, pmt, aipmt,question,bank,NEET,internet,physics,physic,chemistry,biology

List Of Diseases


There are many Diseases on earth,Most of them are discovered and many others are still unknown. Here are the list of diseases arranged in alphabetical order.

A

  • Abdominal aortic aneurysm
  • Abdominal aortic;Abdominal aortic aneurysm (See Abdominal aortic aneurysm)
  • Abdominal Hysterectomy (See Hysterectomy)
  • Ablation therapy
  • Abnormal prostate (See Prostate Cancer)
  • Accessory pathway (See Wolff-Parkinson-White Syndrome)
  • Achalasia
  • Acid reflux (See Gastroesophageal Reflux Disease (GERD))
  • Acinic cell carcinoma (See Salivary gland cancer)
  • Acoustic Neuroma
  • Acquired agammaglobulinemia (See Common variable immunodeficiency)
  • Acral lentiginous melanoma (See Melanoma)
  • Acupuncture
  • Acute (See Acute leukemia)
  • Acute idiopathic polyneuritis (See Guillain-Barre Syndrome)
  • Acute inflammatory demyelinating polyneuropathy (SeeGuillain-Barre Syndrome)
  • Acute intermittent porphyria (AIP) (See Porphyria)
  • Acute leukemia
  • AD (See Alzheimer's Disease)
  • Addiction Services (See Chemical Dependency)
  • Addiction Treatment
  • Adenocarcinoma of the bladder (See Bladder cancer)
  • Adenocarcinoma of the colon (See Colon Cancer)
  • Adenocarcinoma of the prostate (See Prostate Cancer)
  • Adenoid cystic carcinoma (See Salivary gland cancer)
  • Adenoma hyperplastic nodules (See Thyroid Cancer)
  • Adjustment disorder (See Depression)
  • Adnexal mass (See Adnexal Tumors)
  • Adnexal Tumors
  • ADPKD (See Polycystic Kidney Disease)
  • Adrenal cancer
  • Adrenal gland surgery (See Adrenalectomy)
  • Adrenalectomy
  • Adrenocortical carcinoma (See Adrenal cancer)
  • Adrenoleukodystrophy
  • Adult onset agammaglobulinemia (See Common variable immunodeficiency)
  • Aerospace Medicine
  • Age-associated memory impairment (AAMI) (See Mild cognitive impairment)
  • Age-related macular degeneration (See Macular degeneration)
  • Aggressive fibromatosis (See Desmoid Tumors)
  • Agnogenic myeloid metaplasia (See Myelofibrosis)
  • Akinetic-rigid HD (See Huntington's Disease)
  • Alcoholism (See Chemical Dependency)
  • Allergic Diseases
  • Allergic esophagitis (See Eosinophilic Esophagitis)
  • Alopecia (See Hair Loss)
  • ALS (See Lou Gehrig's Disease)
  • Alternative medicine (See Complementary and alternative medicine)
  • Alveolar rhabdomyosarcoma (See Rhabdomyosarcoma)
  • Alveolar soft part sarcoma (See Soft Tissue Sarcoma)
  • Alzheimer's dementia (See Alzheimer's Disease)
  • Alzheimer's Disease
  • AMD (See Macular degeneration)
  • Ameloblastoma
  • Ampullary Cancer
  • Amyloidosis
  • Amyotrophic lateral sclerosis (See Lou Gehrig's Disease)
  • Anal Cancer
  • Anal fissure
  • Anal fistula
  • Anaplastic carcinoma (See Thyroid Cancer)
  • Anemia
  • Anesthesiology
  • Aneurysm (See Abdominal aortic aneurysm)
  • Aneurysms
  • Angioplasty (See Carotid Angioplasty and Stenting)
  • Angiosarcoma (See Soft Tissue Sarcoma)
  • Ankle Surgery
  • Anxiety Disorders
  • Aortic Aneurysm
  • Aortic Coarctation (See Coarctation of the aorta)
  • Aortic root aneurysm repair (See Aortic Root Surgery)
  • Aortic Root Surgery
  • Aortic Stenosis
  • Aortic Valve Disease
  • Arnold-Chiari malformation (See Chiari Malformation)
  • ARPKD (See Polycystic Kidney Disease)
  • Arteriovenous Malformation
  • Arylsulfatase A deficiency (See Metachromatic Leukodystrophy)
  • Assistive technology for spinal cord injury
  • Asthma
  • Astrocytoma (See Glioma)
  • Asymmetrical septal hypertrophy (ASH) (See Hypertrophic Cardiomyopathy)
  • Atherosclerosis
  • Atrial fibrillation ablation (See Cardiac Ablation)
  • Atrial fibrillation
  • Atrial Flutter
  • Atrial Septal Defect
  • Atrioventricular (AV) reentrant tachycardia (See Wolff-Parkinson-White Syndrome)
  • Atypical lipoma (See Liposarcoma)
  • Atypical lipomatous tumors (See Liposarcoma)
  • Audiology
  • Auditory brainstem implant
  • Autoimmune liver disease (See Primary Biliary Cirrhosis)
  • Autoimmune Pancreatitis
  • Autosomal Dominant Polycystic Kidney Disease (SeePolycystic Kidney Disease)
  • Autosomal Recessive Polycystic Kidney Disease (SeePolycystic Kidney Disease)
  • AVM (See Arteriovenous Malformation)
  • Awake Brain Surgery

B

  • B variant GM2 gangliosidosis (See Tay-Sachs Disease)
  • Balance Problems
  • Balint's syndrome (See Posterior Cortical Atrophy)
  • Bariatric Surgery
  • Barrett's Esophagus
  • Basal cell carcinoma (See Nonmelanoma Skin Cancer)
  • Benign adrenal adenoma (See Benign adrenal tumors)
  • Benign adrenal tumors
  • Benign monoclonal gammopathy (See Monoclonal gammopathy of undetermined significance)
  • Benign Peripheral Nerve Tumors
  • Benign prostatic hyperplasia (BPH)
  • Benign senescent forgetfulness (See Mild cognitive impairment)
  • Berger's disease (See IgA nephropathy (Berger's disease))
  • Bile duct cancer
  • Biochemical genetic disorders (See Inherited Metabolic Disorders)
  • Biological therapy for cancer
  • Bipolar Disorder
  • Biventricular pacemaker (See Cardiac Resynchronization Therapy)
  • Black lung disease (See Interstitial Lung Disease)
  • Bladder calculi (See Kidney Stones)
  • Bladder cancer transitional cell carcinoma (See Bladder cancer)
  • Bladder cancer
  • Bladder lesion (See Bladder cancer)
  • Bladder polyp (See Bladder cancer)
  • Bladder surgery (See Cystectomy)
  • Bladder tumor (See Bladder cancer)
  • Blepharospasm [affecting the eyelids] (See Dystonia)
  • Blood transfusion
  • BMS (See Burning mouth syndrome)
  • Bone cancer (See Bone Tumors)
  • Bone marrow cancer (See Multiple myeloma)
  • Bone marrow transplant
  • Bone Tumors
  • Botox
  • Bowel incontinence (See Fecal incontinence)
  • Brachial Plexus Injuries
  • Brachytherapy
  • Bradycardia
  • Brain aneurysm
  • Brain cancer (See Brain tumors)
  • Brain cavernous hemangiomas (See Cavernous Malformations)
  • Brain rehabilitation
  • Brain tumors (See Pediatric brain tumors)
  • Brain tumors
  • Breast Augmentation Surgery
  • Breast cancer risk assessment
  • Breast cancer
  • Breast Clinic
  • Breast Lumps (See Suspicious Breast Lumps)
  • Breast Reduction Surgery
  • Brock's disease (See Hypertrophic Cardiomyopathy)
  • Bruxism
  • Buerger's disease
  • Burning mouth syndrome

C

  • C. difficile
  • CABG (See Coronary bypass surgery)
  • CAD (See Coronary artery disease)
  • Calcific uremic arteriolopathy (See Calciphylaxis)
  • Calciphylaxis
  • Cancer (See Cancer Treatment at Mayo Clinic)
  • Cancer of the adrenal cortex (See Adrenal cancer)
  • Cancer of the anus (See Anal Cancer)
  • Cancer of the bladder (See Bladder cancer)
  • Cancer of the bone (See Bone Tumors)
  • Cancer of the brain (See Brain tumors)
  • Cancer of the breast (See Breast cancer)
  • Cancer of the cervix (See Cervical cancer)
  • Cancer of the colon (See Colon Cancer)
  • Cancer of the duodenum (See Small bowel cancer)
  • Cancer of the esophagus (See Esophageal Cancer)
  • Cancer of the ileum (See Small bowel cancer)
  • Cancer of the jejunum (See Small bowel cancer)
  • Cancer of the liver (See Liver Cancer)
  • Cancer of the lungs (See Lung Cancer)
  • Cancer of the lymphatic system (See Lymphoma)
  • Cancer of the mouth (See Mouth cancer)
  • Cancer of the nasal cavity (See Esthesioneuroblastoma)
  • Cancer of the pancreas (See Pancreatic cancer)
  • Cancer of the prostate (See Prostate Cancer)
  • Cancer of the rectum (See Rectal Cancer)
  • Cancer of the salivary glands (See Salivary gland cancer)
  • Cancer of the skin (See Skin cancer)
  • Cancer of the small intestine (See Small bowel cancer)
  • Cancer of the stomach (See Stomach cancer)
  • Cancer of the testes (See Testicular cancer)
  • Cancer of the throat (See Throat cancer)
  • Cancer of the thyroid (See Thyroid Cancer)
  • Cancer of the tongue (See Tongue cancer)
  • Cancer of the tonsil (See Tonsil cancer)
  • Cancer of the tonsils (See Tonsil cancer)
  • Cancer of the ureter
  • Cancer of the vagina (See Vaginal cancer)
  • Cancer of the vulvar (See Vulvar cancer)
  • Cancer Treatment at Mayo Clinic
  • Cancers of the female reproductive tract (See Endometrial cancer)
  • Cancers of the female reproductive tract (See Ovarian cancer)
  • Cancers of the head and neck (See Head and neck cancers)
  • Capillary telangiectasia (See Arteriovenous Malformation)
  • Carcinoid tumors
  • Carcinoma of unknown primary (See Carcinoma of unknown primary)
  • Carcinoma of unknown primary origin (See Carcinoma of unknown primary)
  • Carcinoma of unknown primary
  • Cardiac Ablation
  • Cardiac arrest (See Sudden cardiac arrest)
  • Cardiac Care (See Heart Care)
  • Cardiac catheterization
  • Cardiac death (See Sudden cardiac arrest)
  • Cardiac Resynchronization Therapy
  • Cardiac Surgery
  • Cardiomyopathy (See Congestive Heart Failure)
  • Cardiothoracic surgery (See Cardiac Surgery)
  • Cardiovascular disease (See Coronary artery disease)
  • Cardiovascular Diseases
  • Cardiovascular surgery (See Cardiac Surgery)
  • Carotid angioplasty (See Carotid Angioplasty and Stenting)
  • Carotid Angioplasty and Stenting
  • Carotid Artery Disease
  • Carotid artery stenosis (See Carotid Artery Disease)
  • Carotid endarterectomy
  • Carotid stenting (See Carotid Angioplasty and Stenting)
  • Carpal Tunnel Syndrome
  • Cavernomas (See Cavernous Malformations)
  • Cavernous angioma (See Arteriovenous Malformation)
  • Cavernous Malformations
  • Celiac disease
  • Central giant cell granuloma (See Odontogenic lesions)
  • Central Nervous System Vascular Malformations
  • Central sleep apnea
  • Cerebellar ectopia (See Chiari Malformation)
  • Cerebellomedullary malformation syndrome (See Chiari Malformation)
  • Cerebral aneurysm (See Brain aneurysm)
  • Cerebral Palsy
  • Cervical cancer
  • Cervical tumor (See Cervical cancer)
  • Cervix cancer (See Cervical cancer)
  • CGD (See Chronic granulomatous disease)
  • Chemical Dependency
  • Chemical Peel
  • Chemotherapy
  • Chest pain
  • Chest Surgery (See Thoracic Surgery)
  • Chiari (See Chiari Malformation)
  • Chiari Malformation
  • Childhood apraxia of speech
  • Choline C-11 injection (See Choline C-11 PET scan)
  • Choline C-11 PET scan
  • Chondroid (See Chondrosarcoma)
  • Chondroid chordoma (See Chordoma)
  • Chondrosarcoma
  • Chordoma
  • Chorea (See Huntington's Disease)
  • Christmas disease (See Hemophilia)
  • Chronic chest pain (See Chest pain)
  • Chronic Constipation
  • Chronic gastritis (See Dyspepsia)
  • Chronic granulomatous disease of childhood (See Chronic granulomatous disease)
  • Chronic granulomatous disease
  • Chronic indigestion (See Dyspepsia)
  • Chronic lymphocytic leukemia
  • Chronic lymphoid leukemia (See Chronic lymphocytic leukemia)
  • Chronic myelogenous leukemia
  • Chronic nonsuppurative destructive cholangitis (See Primary Biliary Cirrhosis)
  • Chronic obstructive pulmonary disease (See COPD)
  • Chronic progressive aphasia (See Primary Progressive Aphasia)
  • Chronic tonsillar herniation (See Chiari Malformation)
  • Circadian rhythm sleep disorder-delayed sleep phase type (See Delayed Sleep Phase)
  • Cirrhosis
  • Clarkson's disease (See Systemic Capillary Leak Syndrome)
  • Classic hemophilia (See Hemophilia)
  • Classical chordoma (See Chordoma)
  • Clear cell chondrosarcoma (See Chondrosarcoma)
  • Clear cell sarcoma of soft tissue (See Soft Tissue Sarcoma)
  • Clinical depression (See Depression)
  • Clival chordoma (See Chordoma)
  • CLL (See Chronic lymphocytic leukemia)
  • Clostridium difficile (See C. difficile)
  • Cluster headaches
  • Coarctation of the aorta
  • Cochlear implants
  • Colitis (See Microscopic colitis)
  • Colitis (See Microscopic colitis)
  • Colitis (See Ulcerative colitis)
  • Collagenous (See Microscopic colitis)
  • Collagenous colitis (See Microscopic colitis)
  • Colles' fracture (See Wrist fracture treatment)
  • Colon and Rectal Surgery
  • Colon Cancer
  • Colon Polyps
  • Colonic dysmotility (See Chronic Constipation)
  • Colorectal cancer (See Colon Cancer)
  • Common variable immunodeficiency
  • Complementary and alternative medicine
  • Composite tissue allotransplantation (See Hand transplant)
  • Compression fracture treatment (See Vertebroplasty)
  • Computer-Assisted Brain Surgery
  • Concussion testing
  • Congenital erythropoietic porphyria (CEP) (See Porphyria)
  • Congenital heart disease
  • Congenital Myasthenic Syndromes
  • Congenital Myopathies
  • Congenital tonsillar ectopia (See Chiari Malformation)
  • Congestive Heart Failure
  • Conventional chordoma (See Chordoma)
  • COPD
  • Cornea Transplant
  • Coronary artery bypass grafting (See Coronary bypass surgery)
  • Coronary artery disease
  • Coronary bypass surgery (See Coronary bypass surgery)
  • Coronary bypass surgery
  • Coronary heart disease (See Coronary artery disease)
  • Cortical-basal ganglionic degeneration (See Corticobasal Degeneration)
  • Corticobasal Degeneration
  • Corticobasal ganglionic degeneration (CBGD) (SeeCorticobasal Degeneration)
  • Corticobasal syndrome (CBS) (See Corticobasal Degeneration)
  • Cosmetic Surgery
  • Craniopharyngeal duct tumor (See Craniopharyngioma)
  • Craniopharyngioma
  • Craniosynostosis
  • Critical Care Medicine
  • Crohn's Disease
  • Crow-Fukase Syndrome (See POEMS Syndrome)
  • Cryoablation for cancer
  • Cryoglobulinemia
  • Cryosurgery (See Cryoablation for cancer)
  • Cryotherapy (See Cryoablation for cancer)
  • Cryptorchidism (See Undescended Testicle)
  • CT colonography (See Virtual Colonoscopy)
  • CTCL (See Cutaneous T-cell lymphoma)
  • CUA (See Calciphylaxis)
  • CUP; carcinoma of uncertain primary origin (See Carcinoma of unknown primary)
  • Cushing syndrome
  • Cutaneous liposarcoma (See Liposarcoma)
  • Cutaneous T-cell lymphoma
  • CVID (See Common variable immunodeficiency)
  • Cystectomy
  • Cystocele (See Pelvic organ prolapse)

D

  • Da Vinci robotic myomectomy (See Robotic myomectomy)
  • Dedifferentiated chondrosarcoma (See Chondrosarcoma)
  • Dedifferentiated chordoma (See Chordoma)
  • Deep brain stimulation
  • Deep fibromatosis (See Desmoid Tumors)
  • Delayed sleep phase pattern (See Delayed Sleep Phase)
  • Delayed sleep phase syndrome (See Delayed Sleep Phase)
  • Delayed Sleep Phase
  • Dementia Lewy bodies (See Lewy body dementia)
  • Demyelinating disorders (See Multiple Sclerosis)
  • Dental implant surgery
  • Dental Specialties
  • Dentigerous cyst (See Odontogenic lesions)
  • Depression
  • Dermal liposarcoma (See Liposarcoma)
  • Dermatitis
  • Dermatology
  • Desmoid Tumors
  • Desmoplastic Small Round Cell Tumors
  • Desmoplastic Tumors (See Desmoplastic Small Round Cell Tumors)
  • Devic's disease (See Neuromyelitis optica)
  • Diabetes
  • Diabetic kidney disease (See Diabetic nephropathy)
  • Diabetic nephropathy
  • Diabetic retinopathy (See Retinal diseases)
  • Diagnostic imaging (See Magnetic Resonance Elastography)
  • Diaphragm pacing for spinal cord injury
  • Diastolic dysfunction (See Congestive Heart Failure)
  • Diastolic heart failure (See Congestive Heart Failure)
  • Dilated cardiomyopathy (See Congestive Heart Failure)
  • Diseases of the retina (See Retinal diseases)
  • Diverticulitis
  • Dizziness (See Balance Problems)
  • Dry macular degeneration (See Macular degeneration)
  • Duodenal cancer (See Small bowel cancer)
  • Duodenal ulcers (See Peptic Ulcers)
  • Dural Arteriovenous Fistulas
  • Dysmyelopoietic syndrome (See Myelodysplastic syndromes)
  • Dyspepsia
  • Dysphagia
  • Dysthymia (See Depression)
  • Dystonia

E

  • Eating Disorders
  • Ebstein's anomaly
  • Eczema (See Dermatitis)
  • Ehlers-Danlos Syndrome
  • Eisenmenger syndrome
  • Ekbom's syndrome (See Restless Legs Syndrome)
  • Elastography (See Magnetic Resonance Elastography)
  • Elbow joint replacement (See Elbow Replacement Surgery)
  • Elbow Replacement Surgery
  • Embryonal rhabdomyosarcoma (See Rhabdomyosarcoma)
  • Emergency Medicine
  • Enchondroma (See Chondrosarcoma)
  • Endocrinology
  • Endometrial cancer (See Endometrial cancer)
  • Endometrial cancer
  • Endoprosthetic elbow replacement (See Elbow Replacement Surgery)
  • Endoscopic Ultrasound
  • Enterocele (See Pelvic organ prolapse)
  • Eosinophilia (See Pediatric white blood cell disorders)
  • Eosinophilic Esophagitis
  • Ependymoma (See Glioma)
  • Epilepsy
  • Epiretinal membrane (See Retinal diseases)
  • Epithelioid sarcoma (See Soft Tissue Sarcoma)
  • Epitrochlear bursitis (See Tennis Elbow)
  • Erectile Dysfunction
  • Erythrodermic psoriasis (See Psoriasis)
  • Erythropoietic protoporphyria (EPP) or protoporphyria (SeePorphyria)
  • Esophageal Cancer
  • Esophagectomy
  • Essential hypersomnia (See Idiopathic Hypersomnia)
  • Essential thrombocythemia
  • Essential tremor
  • Esthesioneuroblastoma
  • Ewing sarcoma family of tumors (See Ewing's sarcoma)
  • Ewing's sarcoma
  • Executive Health Program
  • Eye Care

F

  • Face-lift
  • Facial Fillers for Wrinkles
  • Factor 11 (XI) deficiency (See Hemophilia)
  • Factor 8 (VIII) deficiency (See Hemophilia)
  • Factor 9 (IX) deficiency (See Hemophilia)
  • Fallopian tube masses (See Adnexal Tumors)
  • Fallopian tube neoplasms (See Adnexal Tumors)
  • Familial adenomatous polyposis
  • Familial Cancer Program
  • Familial chordoma (See Chordoma)
  • Familial melanoma (See Melanoma)
  • Family Medicine
  • Farmer's lung (See Interstitial Lung Disease)
  • Fast heartbeat (See Tachycardia)
  • Fatal granulomatosis of childhood (See Chronic granulomatous disease)
  • Fecal incontinence
  • Femoroacetabular impingement (See Hip Impingement)
  • Fetal surgery
  • Fibrocystic breasts
  • Fibrolamellar carcinoma (See Liver Cancer)
  • Fibromuscular dysplasia
  • Fibromyomas (See Uterine Fibroids)
  • Fibrosarcoma (See Soft Tissue Sarcoma)
  • Floor of the Mouth Cancer
  • Flu (Influenza) (See Influenza (flu) vaccinations)
  • Flu Vaccinations (See Influenza (flu) vaccinations)
  • Focal akathisia of the legs (See Restless Legs Syndrome)
  • Focal Segmental Glomerulosclerosis
  • Follicular adenocarcinoma (See Thyroid Cancer)
  • Follicular carcinoma (See Thyroid Cancer)
  • Frontotemporal Dementia
  • FSGS (See Focal Segmental Glomerulosclerosis)
  • Fuchs' Endothelial Dystrophy
  • Functional bowel disease (See Irritable Bowel Syndrome)
  • Functional electrical stimulation for spinal cord injury

G

  • Gallbladder Cancer
  • Gamma Knife (See Stereotactic Radiosurgery)
  • Ganglion cysts
  • Gastric bypass surgery (See Bariatric Surgery)
  • Gastric cancer (See Stomach cancer)
  • Gastroenterology and Hepatology
  • Gastroesophageal cancer (See Stomach cancer)
  • Gastroesophageal Reflux Disease (GERD)
  • Gastroesophageal reflux disease (See Gastroesophageal Reflux Disease (GERD))
  • Gastrointestinal bleeding
  • Gastrointestinal cancer (See Stomach cancer)
  • Gastrointestinal stromal tumor (See Soft Tissue Sarcoma)
  • Gastrointestinal stromal tumors (GISTs)
  • Gastroparesis
  • GBS (See Guillain-Barre Syndrome)
  • GCT (See Germ cell tumors)
  • General Internal Medicine
  • General Surgery
  • Genetic metabolic disease (See Inherited Metabolic Disorders)
  • Germ cell cancer (See Germ cell tumors)
  • Germ cell tumors
  • GI bleeding (See Gastrointestinal bleeding)
  • GI stromal tumors (See Gastrointestinal stromal tumors (GISTs))
  • Glioma
  • Glossodynia (See Burning mouth syndrome)
  • GM2 gangliosidosis Type 1 (See Tay-Sachs Disease)
  • Gorlin's syndrome (See Odontogenic lesions)
  • Granuloma (See Voice Disorders)
  • Graves' Disease
  • Guillain-Barre Syndrome
  • Guttate psoriasis (See Psoriasis)
  • Gynecologic surgery (See Obstetrics and Gynecology)
  • Gynecology (See Obstetrics and Gynecology)

H

  • Hürthle cell carcinoma (See Thyroid Cancer)
  • H1N1 Flu (See Influenza (flu) vaccinations)
  • Hair Loss
  • Hand transplant
  • Head and neck cancers
  • Hearing Loss
  • Heart arrhythmias
  • Heart bypass surgery (See Coronary bypass surgery)
  • Heart Care
  • Heart catheterization (See Cardiac catheterization)
  • Heart failure (See Congestive Heart Failure)
  • Heart transplant
  • Heart Valve Disease
  • Heart Valve Surgery
  • Heartburn (See Gastroesophageal Reflux Disease (GERD))
  • Hemangiopericytoma (See Soft Tissue Sarcoma)
  • Hematology
  • Hemifacial Spasm
  • Hemophilia
  • Hemorrhoids
  • Hepatitis C
  • Hepatocellular carcinoma (See Liver Cancer)
  • Hepatoerythropoietic porphyria (HEP) (See Porphyria)
  • Hepatoma (See Liver Cancer)
  • Hepatopulmonary Syndrome
  • Hereditary coproporphyria (HCP) (See Porphyria)
  • Hereditary Focal Segmental Glomerulosclerosis (See Focal Segmental Glomerulosclerosis)
  • Hereditary hemorrhagic telangiectasia (HHT)
  • Hereditary hemorrhagic telangiectasia (See Hereditary hemorrhagic telangiectasia (HHT))
  • Hereditary nonpolyposis colorectal cancer; HNPCC (SeeLynch syndrome)
  • Herniated small bowel (See Pelvic organ prolapse)
  • Herniation of the cerebellar tonsils (See Chiari Malformation)
  • HexA deficiency (See Tay-Sachs Disease)
  • Hexosaminidase A Deficiency Disease (See Tay-Sachs Disease)
  • Hexosaminidase alpha-subunit deficiency variant B (See Tay-Sachs Disease)
  • HHT (See Hereditary hemorrhagic telangiectasia (HHT))
  • Hiatal hernia
  • Hindbrain hernia (See Chiari Malformation)
  • Hip arthroplasty (See Hip Replacement Surgery)
  • Hip Dysplasia
  • Hip Impingement
  • Hip replacement surgery (See Hip Replacement Surgery)
  • Hip Replacement Surgery
  • Histamine headache (See Cluster headaches)
  • Hodgkin's disease (See Hodgkin's lymphoma)
  • Hodgkin's lymphoma
  • Holmium Laser Prostate Surgery (HoLEP)
  • Home Enteral Nutrition
  • Home Parenteral Nutrition Program (TPN)
  • Hospital Internal Medicine (See General Internal Medicine)
  • Huntington disease (See Huntington's Disease)
  • Huntington's chorea (See Huntington's Disease)
  • Huntington's Disease
  • Hydrocephalus
  • Hyperaldosteronism (See Benign adrenal tumors)
  • Hyperbaric Oxygen Therapy
  • Hypercortisolism (See Cushing syndrome)
  • Hypereosinophilic syndrome
  • Hyperhidrosis
  • Hyperoxaluria and oxalosis
  • Hypersomnia (See Idiopathic Hypersomnia)
  • Hypertrophic Cardiomyopathy
  • Hypnosis
  • Hypnotherapy (See Hypnosis)
  • Hypoplastic left heart syndrome
  • Hypospadias
  • Hysterectomy

I

  • IBD (See Inflammatory Bowel Disease)
  • IBS (See Irritable Bowel Syndrome)
  • Idiopathic central nervous system [CNS] hypersomnolence (See Idiopathic Hypersomnia)
  • Idiopathic Hypersomnia
  • Idiopathic hypertrophic subaortic stenosis (IHSS) (SeeHypertrophic Cardiomyopathy)
  • Idiopathic myelofibrosis (See Myelofibrosis)
  • Idiopathic thrombocytopenic purpura (ITP)
  • IgA deficiency (See Selective IgA deficiency)
  • IgA nephropathy (Berger's disease)
  • IgA nephropathy (See IgA nephropathy (Berger's disease))
  • IGRT (See Image-guided radiation therapy (IGRT))
  • Ileitis (See Crohn's Disease)
  • Ileoanal anastomosis (J pouch) surgery
  • Image-guided radiation therapy (IGRT)
  • Imbalance (See Balance Problems)
  • Immune thrombocytopenic purpura (See Idiopathic thrombocytopenic purpura (ITP))
  • Impotence (See Erectile Dysfunction)
  • Infantile ganglioside lipidosis (See Tay-Sachs Disease)
  • Infectious Diseases
  • Infectious polyneuritis (See Guillain-Barre Syndrome)
  • Infertility
  • Inflammatory Bowel Disease
  • Inflammatory Breast Cancer
  • Inflammatory liposarcoma (See Liposarcoma)
  • Inflammatory myofibroblastic tumor (See Soft Tissue Sarcoma)
  • Influenza (flu) vaccinations
  • Inherited Metabolic Disorders
  • Inherited neurodegenerative disorders (See Inherited Metabolic Disorders)
  • Insomnia
  • Integrative medicine (See Complementary and alternative medicine)
  • Intensity-modulated radiation therapy (IMRT)
  • Interdigital neuroma (See Morton's neuroma)
  • Intermetatarsal neuroma (See Morton's neuroma)
  • Internal radiation therapy (See Brachytherapy)
  • Interstitial Lung Disease
  • Intestinal ischemia (See Mesenteric Ischemia)
  • Intracranial chordoma (See Chordoma)
  • Intracranial Venous Malformations
  • Intraoperative magnetic resonance imaging (iMRI)
  • Intraoperative radiation therapy (IORT)
  • IORT (See Intraoperative radiation therapy (IORT))
  • Iron deficiency disorder (See Anemia)
  • Irritable Bowel Syndrome
  • Irritable colon (See Irritable Bowel Syndrome)
  • Ischemic heart disease (See Coronary artery disease)
  • Islet cell cancer
  • Islet cell carcinoma (See Islet cell cancer)
  • ITP (See Idiopathic thrombocytopenic purpura (ITP))

J

  • J-pouch surgery (See Ileoanal anastomosis (J pouch) surgery)
  • Jaw Surgery
  • Juvenile-onset HD (See Huntington's Disease)

K

  • Kahler's Disease (See Multiple myeloma)
  • Kaposi's sarcoma (See Nonmelanoma Skin Cancer)
  • Kaposi's sarcoma (See Soft Tissue Sarcoma)
  • Kawasaki Disease
  • Keratoconus
  • Keyhole surgery (See Minimally Invasive Surgery)
  • Kidney (See Kidney Stones)
  • Kidney cancer
  • Kidney Stones
  • Kidney Transplant
  • Kidney-sparing surgery (See Partial Nephrectomy)
  • Klippel-Trenaunay Syndrome
  • Knee Replacement
  • KTS (See Klippel-Trenaunay Syndrome)
  • Kyphoplasty (See Vertebroplasty)

L

  • Laboratory Medicine and Pathology
  • Landry's ascending paralysis (See Guillain-Barre Syndrome)
  • Landry-Guillain-Barré syndrome (See Guillain-Barre Syndrome)
  • Laparoscopic surgery (See Minimally Invasive Surgery)
  • Laryngitis (See Voice Disorders)
  • Laryngotracheal reconstruction surgery
  • Laser Eye Surgery
  • Laser Hair Removal
  • Laser PVP surgery
  • Laser Resurfacing
  • Late onset hypoagammaglobulinemia (See Common variable immunodeficiency)
  • Lateral epicondylitis (See Tennis Elbow)
  • Leiomyomas (See Uterine Fibroids)
  • Leiomyosarcoma (See Soft Tissue Sarcoma)
  • Lentigo maligna melanoma (See Melanoma)
  • Leukemia (See Acute leukemia)
  • Leukemia
  • Lewy body dementia (See Lewy body dementia)
  • Lewy body dementia
  • Limb dystonia (See Dystonia)
  • LINAC (See Stereotactic Radiosurgery)
  • Lip Cancer
  • Liposarcoma (See Soft Tissue Sarcoma)
  • Liposarcoma
  • Liver Cancer
  • Liver Disease
  • Liver transplant
  • Localized fibrous mesothelioma (See Solitary Fibrous Tumors)
  • Locomotor training for spinal cord injury
  • Long QT Syndrome
  • Lou Gehrig's Disease
  • Lubag (See Dystonia)
  • Lumbar Spinal Fusion
  • Lumbar stenosis (See Spinal stenosis)
  • Lung Cancer
  • Lung shaving (See Lung volume reduction surgery)
  • Lung transplant
  • Lung volume reduction surgery
  • Lupus Nephritis
  • LVRS (See Lung volume reduction surgery)
  • Lymphedema
  • Lymphocytic (See Microscopic colitis)
  • Lymphocytic colitis (See Microscopic colitis)
  • Lymphocytopenia (See Pediatric white blood cell disorders)
  • Lymphoma
  • Lymphoplasmacytic Sclerosing Pancreatitis (See Autoimmune Pancreatitis)
  • Lynch syndrome
  • Lysosomal disorder (See Tay-Sachs Disease)

M

  • Macroglobulinemia (See Waldenstrom macroglobulinemia)
  • Macular degeneration
  • Macular hole (See Retinal diseases)
  • Magnetic resonance (See Magnetic Resonance Elastography)
  • Magnetic Resonance Elastography
  • Malignancy of fat cells (See Liposarcoma)
  • Malignant fibrous histiocytoma (See Soft Tissue Sarcoma)
  • Malignant peripheral nerve sheath tumors
  • Malignant schwannoma (See Malignant peripheral nerve sheath tumors)
  • Manic depression (See Bipolar Disorder)
  • Marfan syndrome
  • Massage therapy
  • Mayer-Rokitansky-Kuster-Hauser (MRKH) Syndrome (SeeVaginal Agenesis)
  • MCI (See Mild cognitive impairment)
  • MDS (See Myelodysplastic syndromes)
  • Meditation
  • Medullary carcinoma (See Thyroid Cancer)
  • Meige syndromes [affecting the lower face] (See Dystonia)
  • Melanoma
  • Membranous glomerulonephritis (See Membranous nephropathy)
  • Membranous nephropathy
  • MEN 1 syndrome (See Multiple endocrine neoplasia, type 1 (MEN 1))
  • Meningiomas
  • Meningocele (See Spina Bifida)
  • Merkel cell carcinoma (See Nonmelanoma Skin Cancer)
  • Merycism (See Rumination syndrome)
  • Mesenchymal chondrosarcoma (See Chondrosarcoma)
  • Mesenteric Ischemia
  • Mesenteric panniculitis (See Sclerosing Mesenteritis)
  • Mesothelioma
  • Metabolic disorders (See Inherited Metabolic Disorders)
  • Metachromatic Leukodystrophy
  • MGUS (See Monoclonal gammopathy of undetermined significance)
  • Microscopic (See Microscopic colitis)
  • Microscopic colitis
  • Migraine
  • Mild cognitive impairment
  • Minimally Invasive Heart Surgery
  • Minimally invasive hip replacement (See Hip Replacement Surgery)
  • Minimally invasive hysterectomy (See Robotic hysterectomy)
  • Minimally Invasive Surgery
  • Minor salivary gland cancer (See Salivary gland cancer)
  • Mitral valve disease
  • Mixed Glioma (See Glioma)
  • Mohs surgery
  • Monoclonal gammopathy of undetermined significance
  • Monocyte disorders (See Pediatric white blood cell disorders)
  • Mood disorder (See Depression)
  • Mood disorders
  • Morton's metatarsalgia (See Morton's neuroma)
  • Morton's neuroma
  • Mouth cancer
  • Movement Disorders
  • Moyamoya disease
  • MPNST (See Malignant peripheral nerve sheath tumors)
  • Mre (See Magnetic Resonance Elastography)
  • Mucoepidermoid carcinoma (See Salivary gland cancer)
  • Mucus colitis (See Irritable Bowel Syndrome)
  • Mullerian Agenesis (See Vaginal Agenesis)
  • Multiple endocrine neoplasia, type 1 (MEN 1)
  • Multiple myeloma
  • Multiple Sclerosis
  • Multiple System Atrophy
  • Muscular subaortic stenosis (See Hypertrophic Cardiomyopathy)
  • Musculoaponeurotic fibromatosis (See Desmoid Tumors)
  • Myasthenia Gravis
  • Myelin damage (See Multiple Sclerosis)
  • Myelocele (See Spina Bifida)
  • Myelodysplasia (See Myelodysplastic syndromes)
  • Myelodysplastic syndromes
  • Myelofibrosis (See Myelofibrosis)
  • Myelofibrosis
  • Myeloma (See Multiple myeloma)
  • Myelomeningocele (See Spina Bifida)
  • Myocarditis
  • Myoclonus
  • Myomas (See Uterine Fibroids)
  • Myxoid chondrosarcoma (See Chondrosarcoma)
  • Myxoid liposarcoma (See Liposarcoma)
  • Myxoinflammatory fibroblastic sarcoma (See Soft Tissue Sarcoma)

N

  • Narcolepsy
  • Nasal and Paranasal Tumors
  • Nasal tumors (See Nasal and Paranasal Tumors)
  • Neck Lift
  • Neobladder reconstruction
  • Nephrectomy (See Partial Nephrectomy)
  • Nephrogenic systemic fibrosis
  • Nephrology and Hypertension
  • Nephron-sparing surgery (See Partial Nephrectomy)
  • Neuroblastoma
  • Neuroendocrine Tumors
  • Neurofibromatosis
  • Neurofibrosarcoma (See Malignant peripheral nerve sheath tumors)
  • Neurogenic bladder and bowel management for spinal cord injury
  • Neurogenic sarcoma (See Malignant peripheral nerve sheath tumors)
  • Neurological disorders (See Multiple Sclerosis)
  • Neurology
  • Neuromyelitis optica
  • Neurosurgery
  • Neutropenia (See Pediatric white blood cell disorders)
  • Nevoid basal cell carcinoma syndrome (See Odontogenic lesions)
  • Nicotine Dependence Center
  • Niemann-Pick Disease (See Niemann-Pick)
  • Niemann-Pick
  • NMO (See Neuromyelitis optica)
  • Nocturnal binge eating (See Sleep-Related Eating Disorder)
  • Nocturnal sleep-related eating disorder (See Sleep-Related Eating Disorder)
  • Nodular melanoma (See Melanoma)
  • Non-Hodgkin's Lymphoma
  • Non-ulcer dyspepsia (See Dyspepsia)
  • Non-ulcer stomach pain (See Dyspepsia)
  • Nonalcoholic Fatty Liver Disease
  • Nonalcoholic steatohepatitis (See Nonalcoholic Fatty Liver Disease)
  • Nonmelanoma Skin Cancer

O

  • OB/GYN (See Obstetrics and Gynecology)
  • Obesity treatment (See Bariatric Surgery)
  • Obscure GI bleeding (See Gastrointestinal bleeding)
  • Obsessive-compulsive disorder (OCD)
  • Obstetrics (See Obstetrics and Gynecology)
  • Obstetrics and Gynecology
  • Obstetrics
  • Obstructive sleep apnea syndrome [OSAS] (See Obstructive sleep apnea)
  • Obstructive sleep apnea
  • OCD (See Obsessive-compulsive disorder (OCD))
  • Ocular melanoma (See Melanoma)
  • Odontogenic lesions
  • Olfactory neuroblastoma (See Esthesioneuroblastoma)
  • Oligodendroglioma (See Glioma)
  • Oncology
  • Open prostatectomy (See Radical Prostatectomy)
  • Ophthalmology
  • Oral and Maxillofacial Surgery
  • Oral implants (See Dental implant surgery)
  • Oral lichen planus
  • Orthodontics (See Cosmetic Surgery)
  • Orthognathic surgery (See Jaw Surgery)
  • Orthopedic Surgery
  • Osler-Weber-Rendu syndrome (See Hereditary hemorrhagic telangiectasia (HHT))
  • Osteochondroma (See Chondrosarcoma)
  • Osteosarcoma
  • Osteosclerotic Myeloma (See POEMS Syndrome)
  • Otorhinolaryngology (ENT)
  • Ovarian cancer
  • Ovarian cysts (See Adnexal Tumors)
  • Ovarian mass (See Adnexal Tumors)
  • Ovarian masses (See Adnexal Tumors)
  • Ovarian neoplasms (See Adnexal Tumors)

P

  • Pacemaker (See Cardiac Resynchronization Therapy)
  • Palliative Care
  • Pancreas transplant
  • Pancreatic cancer
  • Pancreatic mass (See Pancreatic cancer)
  • Pancreatitis
  • Papillary adenocarcinoma (See Thyroid Cancer)
  • Papillary carcinoma (See Thyroid Cancer)
  • Paradoxical sleep without atonia (See REM Sleep Behavior Disorder)
  • Paraganglioma (See Adrenal cancer)
  • Paraneoplastic Disorders (See Paraneoplastic syndromes)
  • Paraneoplastic Neurologic Syndromes (See Paraneoplastic syndromes)
  • Paraneoplastic syndromes
  • Parasomnia overlap disorder (See REM Sleep Behavior Disorder)
  • Parkinson's disease
  • Parotid gland tumor (See Salivary gland cancer)
  • Partial (See Partial Nephrectomy)
  • Partial cystectomy (See Cystectomy)
  • Partial Nephrectomy
  • Patent ductus arteriosus
  • PBC (See Primary Biliary Cirrhosis)
  • Pectus carinatum
  • Pectus Excavatum
  • Pediatric (See Pediatric brain tumors)
  • Pediatric and Adolescent Medicine
  • Pediatric brain tumors
  • Pediatric Cervical Spine Surgery
  • Pediatric obstructive sleep apnea (See Pediatric obstructive sleep apnea)
  • Pediatric obstructive sleep apnea
  • Pediatric Surgery
  • Pediatric Thrombocytopenia
  • Pediatric white blood cell disorders
  • Pelvic organ prolapse
  • Penile curvature (See Peyronie's Disease)
  • Peptic Ulcers
  • Percutaneous ablation (See Ablation therapy)
  • Peripheral artery disease
  • Peripheral Nerve Damage (See Peripheral Nerve Injuries)
  • Peripheral Nerve Injuries
  • Peripheral Nerve Injury (See Peripheral Nerve Injuries)
  • Peripheral Nerve Tumors
  • Peripheral vascular disease (See Peripheral artery disease)
  • Permanent Prostate Brachytherapy
  • PET (See Positron Emission Tomography)
  • Peyronie's Disease
  • Pheochromocytoma (See Adrenal cancer)
  • Pheochromocytoma (See Benign adrenal tumors)
  • Photodynamic Therapy
  • Physical Medicine and Rehabilitation
  • Piles (See Hemorrhoids)
  • Pituitary tumors
  • PKD (See Polycystic Kidney Disease)
  • Plaque psoriasis (See Psoriasis)
  • Plasmacytoma (See Multiple myeloma)
  • Plastic and Reconstructive Surgery
  • Pleomorphic liposarcoma (See Liposarcoma)
  • Pleomorphic rhabdomyosarcoma (See Rhabdomyosarcoma)
  • Pleuroscopy (See Video-Assisted Thoracoscopic Surgery (VATS))
  • POEMS Syndrome
  • Polycystic Kidney Disease
  • Polycystic Ovary Syndrome (PCOS)
  • Popliteal artery aneurysm
  • Porphyria cutanea tarda (PCT) (See Porphyria)
  • Porphyria
  • Positron Emission Tomography
  • Posterior Cortical Atrophy
  • Pouchitis
  • Preleukemia (See Myelodysplastic syndromes)
  • Preventive, Occupational and Aerospace Medicine
  • Primary aldosteronism (See Benign adrenal tumors)
  • Primary Biliary Cirrhosis
  • Primary Brain Tumors (See Glioma)
  • Primary Immunodeficiency Center in Minnesota
  • Primary liver cancer (See Liver Cancer)
  • Primary osseous neoplasms (See Chondrosarcoma)
  • Primary Progressive Aphasia
  • Primary Sclerosing Cholangitis
  • Procidentia (See Pelvic organ prolapse)
  • Procidentia (See Rectal prolapse)
  • Proctitis (See Ulcerative colitis)
  • Progressive cortical visual dysfunction syndrome (SeePosterior Cortical Atrophy)
  • Progressive nonfluent aphasia (See Primary Progressive Aphasia)
  • Progressive simultanagnosia (See Posterior Cortical Atrophy)
  • Progressive Supranuclear Palsy
  • Prolapse of the bladder (See Pelvic organ prolapse)
  • Prolapse of the rectum (See Pelvic organ prolapse)
  • Prolapsed uterus (See Pelvic organ prolapse)
  • Prostate Cancer
  • Prostate enlargement (See Benign prostatic hyperplasia (BPH))
  • Prostate nodule (See Prostate Cancer)
  • Prostate surgery (See Radical Prostatectomy)
  • PSC (See Primary Sclerosing Cholangitis)
  • Psoriasis
  • Psychiatry and Psychology
  • Psychology and Psychiatry (See Psychiatry and Psychology)
  • Pulmonary and Critical Care Medicine
  • Pulmonary atresia
  • Pulmonary fibrosis (See Interstitial Lung Disease)
  • Pulmonary hypertension
  • Pulmonary valve disease
  • Pulmonary vein isolation (See Cardiac Ablation)
  • PVI ablation (See Cardiac Ablation)
  • Pyoderma gangrenosum

Q

No listings.

R

  • Radiation Enteritis
  • Radiation Oncology
  • Radiation therapy (See 3-D conformal radiation)
  • Radiation Therapy
  • Radical cystectomy (See Cystectomy)
  • Radical Prostatectomy
  • Radiofrequency ablation for cancer
  • Radiofrequency catheter ablation (See Cardiac Ablation)
  • Radiology
  • RAS (See Renal artery stenosis)
  • Rathke pouch tumor (See Craniopharyngioma)
  • Reconstructive gynecology (See Obstetrics and Gynecology)
  • Reconstructive Nose Surgery
  • Rectal Cancer
  • Rectal prolapse
  • Rectal-vaginal fistulas (See Vaginal Fistulas)
  • Rectocele (See Pelvic organ prolapse)
  • Refractory anemia (See Myelodysplastic syndromes)
  • Regional enteritis (See Crohn's Disease)
  • REM Sleep Behavior Disorder
  • REM sleep motor parasomnia (See REM Sleep Behavior Disorder)
  • REM sleep without atonia (See REM Sleep Behavior Disorder)
  • Renal artery stenosis
  • Renal calculus (See Kidney Stones)
  • Renal cancer (See Kidney cancer)
  • Renal cell adenocarcinoma (See Kidney cancer)
  • Renal cell carcinoma (See Kidney cancer)
  • Renal stone (See Kidney Stones)
  • Renal-sparing surgery (See Partial Nephrectomy)
  • Renovascular hypertension (See Renal artery stenosis)
  • Reproductive Medicine
  • Resilience training
  • Restless Legs Syndrome
  • Restorative dental care (See Cosmetic Surgery)
  • Restrictive cardiomyopathy (See Congestive Heart Failure)
  • Retinal detachment (See Retinal diseases)
  • Retinal diseases
  • Retractile mesenteritis (See Sclerosing Mesenteritis)
  • Rhabdomyosarcoma
  • Rheumatic Fever
  • Rheumatology
  • Robot assisted myomectomy (See Robotic myomectomy)
  • Robot-assisted hysterectomy (See Robotic hysterectomy)
  • Robot-Assisted Surgery (See Robotic Surgery)
  • Robotic hysterectomy
  • Robotic laparoscopic myomectomy (See Robotic myomectomy)
  • Robotic myomectomy
  • Robotic Prostatectomy
  • Robotic surgery myomectomy (See Robotic myomectomy)
  • Robotic Surgery
  • Rotator Cuff Injury
  • Round cell liposarcoma (See Liposarcoma)
  • Rumination syndrome

S

  • Sacrococcygeal chordoma (See Chordoma)
  • Saint Vitus' dance (See Huntington's Disease)
  • Salivary gland cancer
  • Sarcoidosis (See Interstitial Lung Disease)
  • Sarcoma botryoides (See Rhabdomyosarcoma)
  • Sarcoma
  • SCAD (See Spontaneous Coronary Artery Dissection)
  • Scalded mouth syndrome (See Burning mouth syndrome)
  • Scaphoid fracture (See Wrist fracture treatment)
  • Sclerosing Mesenteritis
  • SCLS (See Systemic Capillary Leak Syndrome)
  • Scoliosis
  • Seasonal Flu (See Influenza (flu) vaccinations)
  • Selective deficiency of IgA (See Selective IgA deficiency)
  • Selective IgA deficiency
  • Semantic aphasia (See Primary Progressive Aphasia)
  • Semantic dementia (See Primary Progressive Aphasia)
  • Senile dementia (See Alzheimer's Disease)
  • Sexuality and fertility management for spinal cord injury
  • Short Bowel Syndrome
  • Shy-Drager syndrome (See Multiple System Atrophy)
  • Silicosis (See Interstitial Lung Disease)
  • Sinus tumors (See Nasal and Paranasal Tumors)
  • Skin cancer (See Nonmelanoma Skin Cancer)
  • Skin cancer
  • Skull base chordoma (See Chordoma)
  • Sleep apnea (See Obstructive sleep apnea)
  • Sleep Disorders
  • Sleep-disordered breathing (SDB) (See Obstructive sleep apnea)
  • Sleep-related binge eating (See Sleep-Related Eating Disorder)
  • Sleep-related disorders (See Sleep Disorders)
  • Sleep-Related Eating Disorder
  • Sleeping disorders (See Sleep Disorders)
  • Sleeplessness (See Insomnia)
  • Sleepwalking
  • Slow stomach emptying (See Gastroparesis)
  • Slow-transit constipation (See Chronic Constipation)
  • Small bowel cancer
  • Smoking Cessation (See Stop Smoking Services)
  • Snoring
  • Soft Palate Cancer
  • Soft palate carcinoma (See Soft Palate Cancer)
  • Soft Tissue Sarcoma
  • Solitary Fibrous Tumors
  • Somnambulism (See Sleepwalking)
  • Spasmodic dysphonia (See Voice Disorders)
  • Spasmodic torticollis [affecting the neck] (See Dystonia)
  • Spastic colon (See Irritable Bowel Syndrome)
  • Spasticity management for
    spinal cord injury
  • Spina Bifida
  • Spinal Arteriovenous Malformations
  • Spinal chordoma (See Chordoma)
  • Spinal cord injury rehabilitation
  • Spinal Cord Tumors
  • Spinal deformity (See Scoliosis)
  • Spinal Dysraphism (See Spina Bifida)
  • Spinal Fusion (See Lumbar Spinal Fusion)
  • Spinal stenosis
  • Spindle cell rhabdomyosarcoma (See Rhabdomyosarcoma)
  • Spontaneous Coronary Artery Dissection
  • Spontaneous occlusion of the circle of Willis (See Moyamoya disease)
  • Sports Medicine
  • Sports Performance Training Program
  • Sprue (See Celiac disease)
  • Squamous cell carcinoma (See Nonmelanoma Skin Cancer)
  • Squamous cell carcinoma
  • Status dissociates (See REM Sleep Behavior Disorder)
  • Steele-Richardson-Olszewski Syndrome (See Progressive Supranuclear Palsy)
  • Stenosing tenosynovitis (See Trigger finger)
  • Stenting (See Carotid Angioplasty and Stenting)
  • Stereotactic Radiosurgery
  • Sterility (See Infertility)
  • Steroid-Resistant Nephrotic Syndrome (See Focal Segmental Glomerulosclerosis)
  • Stomach cancer
  • Stomach ulcers (See Peptic Ulcers)
  • Stomatodynia (See Burning mouth syndrome)
  • Stones (See Kidney Stones)
  • Stop Smoking Services
  • Stress headache (See Migraine)
  • Stress Management
  • Stroke telemedicine (telestroke)
  • Stroke
  • Subarachnoid Hemorrhage
  • Sublingual gland tumor (See Salivary gland cancer)
  • Submandibular gland tumor (See Salivary gland cancer)
  • Substance Abuse (See Chemical Dependency)
  • Sudden cardiac arrest
  • Sudden cardiac death (See Sudden cardiac arrest)
  • Superficial spreading melanoma (See Melanoma)
  • Surgery
  • Suspicious Breast Lumps
  • Swallowing problems (See Dysphagia)
  • Sweating (excessive) (See Hyperhidrosis)
  • Swine Flu (See Influenza (flu) vaccinations)
  • Synovial sarcoma (See Soft Tissue Sarcoma)
  • Systemic Capillary Leak Syndrome
  • Systemic mastocytosis
  • Systolic heart failure (See Congestive Heart Failure)

T

  • Tachycardia
  • Takatsuki Syndrome (See POEMS Syndrome)
  • Tay Sachs disease (See Tay-Sachs Disease)
  • Tay-Sachs Disease
  • Tay-Sachs spingolipidosis (See Tay-Sachs Disease)
  • Teare's disease (See Hypertrophic Cardiomyopathy)
  • Teeth clenching (See Bruxism)
  • Teeth gnashing during sleep (See Bruxism)
  • Teeth grinding (See Bruxism)
  • Telestroke (See Stroke telemedicine (telestroke))
  • Temporomandibular joint disorders (See TMJ Disorders)
  • Tennis Elbow
  • Tension headache (See Migraine)
  • Testicular cancer
  • Testicular neoplasm (See Testicular cancer)
  • Tetralogy of Fallot
  • Thoracic aortic aneurysm
  • Thoracic Outlet Syndrome
  • Thoracic Surgery
  • Thoracoscopy (See Video-Assisted Thoracoscopic Surgery (VATS))
  • Throat cancer
  • Thromboangiitis obliterans (See Buerger's disease)
  • Thrombocythemia (See Essential thrombocythemia)
  • Thrombocytopenia in Children (See Pediatric Thrombocytopenia)
  • Thyroid Cancer
  • Thyroid nodules (See Thyroid Cancer)
  • Tic douloureux (See Trigeminal neuralgia)
  • TMJ Disorders
  • TMS (See Transcranial magnetic stimulation)
  • Tongue cancer
  • Tonsil cancer
  • TOS (See Thoracic Outlet Syndrome)
  • Total elbow arthroplasty (See Elbow Replacement Surgery)
  • Total hip replacement (See Hip Replacement Surgery)
  • Tourette syndrome
  • Tourette's disorder (See Tourette syndrome)
  • Tracheostomy
  • Transcatheter aortic valve replacement
  • Transcranial magnetic stimulation
  • Transoral Robotic Surgery for Oral Cancer
  • Transplant Center
  • Transplant Programs at Mayo Clinic
  • Transposition of the great arteries
  • Tricuspid valve disease
  • Trigeminal neuralgia
  • Trigger finger
  • TSD (See Tay-Sachs Disease)
  • Tube Feeding (See Home Enteral Nutrition)

U

  • Ulcerative colitis
  • Ulnar Wrist Pain
  • Undescended Testicle
  • Unexplained gastrointestinal bleeding (See Gastrointestinal bleeding)
  • Upper airway resistance syndrome [UARS] (See Obstructive sleep apnea)
  • Upper extremity functional restoration for spinal cord injury
  • Urachal cancer (See Bladder cancer)
  • Ureter cancer (See Cancer of the ureter)
  • Ureteral calculi or stone (See Kidney Stones)
  • Ureteral cancer (See Cancer of the ureter)
  • Ureteral Obstruction
  • Urethral stone (See Kidney Stones)
  • Urethral stricture
  • Urinary Incontinence
  • Urinary tract infections
  • Urology
  • Urothelial cancer (See Bladder cancer)
  • Uterine Fibroids
  • UTI (See Urinary tract infections)

V

  • Vaginal Agenesis
  • Vaginal cancer
  • Vaginal Fistulas
  • Vaginal Hysterectomy (See Hysterectomy)
  • Vaginal prolapse (See Pelvic organ prolapse)
  • Valve-preserving aortic root repair (See Aortic Root Surgery)
  • Varicose veins (See Varicose veins)
  • Varicose veins
  • Variegate porphyria (VP) (See Porphyria)
  • Vascular and Endovascular Surgery
  • Vascular Medicine
  • Vascularized composite allotransplantation (See Hand transplant)
  • Venous angioma (See Arteriovenous Malformation)
  • Ventricular assist devices
  • Ventricular tachycardia
  • Vertebroplasty
  • Vertigo (See Balance Problems)
  • Video-Assisted Thoracoscopic Surgery (VATS)
  • Virtual Colonoscopy
  • Visual variant of Alzheimer's disease (See Posterior Cortical Atrophy)
  • Vocal fold paralysis (See Voice Disorders)
  • Voice abuse (See Voice Disorders)
  • Voice Disorders
  • Vulvar cancer

W

  • Waldenstrom macroglobulinemia
  • Weight loss surgery (See Bariatric Surgery)
  • Wermer's syndrome (See Multiple endocrine neoplasia, type 1 (MEN 1))
  • Westphal HD (See Huntington's Disease)
  • Wet macular degeneration (See Macular degeneration)
  • Whipple procedure
  • White matter diseases (See Metachromatic Leukodystrophy)
  • Wilms' Tumor
  • Wilson's Disease
  • Wolff-Parkinson-White Syndrome
  • Women's cancers (See Endometrial cancer)
  • Women's Health
  • WPW syndrome (See Wolff-Parkinson-White Syndrome)
  • Wrinkle Treatment
  • Wrist fracture treatment
  • Writer's cramp (See Dystonia)

X

  • X-linked agammaglobulinemia

Y

No listings.

Z

No listings.


autoimmune diseases, infectious disease, communicable disease, brain diseases, medical diseases, life threatening diseases, rare diseases list, contagious diseases, new diseases, lung disease, skin diseases, lyme disease, rare disease, rare diseases, autoimmune disease, skin disease, gaucher disease, infectious diseases, gaucher s disease, list of diseases, als disease, graves disease, grover s disease, morgellons disease, blood diseases, heart disease, asperger disease, chronic lyme disease, immune system diseases, grovers disease, rare blood diseases, diseases, chicken diseases, lung diseases, human diseases, inflammatory diseases, respiratory diseases, muscular diseases, fabry s disease, metabolic diseases, children diseases, bone diseases, genetic diseases list, autoimmune diseases list, muscle diseases, auto immune diseases, genetic diseases, aids disease, celiac disease, eye diseases



Note :- This list is taken from different sources available on internet. We don not say the above information is correct. If you found any mistake please let us know.