Switch Case
1.
Which follows the case statement ?
2.
What is required to avoid falling through from one case to the next ?
3.
What keyword covers unhandled possibilities ?
4.
What is the result of the following code?
int x=0;
switch(x){
case 1: cout<<"One";
case 0: cout<<"Zero";
case 2: cout<<"Hello World";
}