Which follows the case statement?@:@;@-@A newline@A@
Which of the following is true?@1@66@ -1@All Of above@D@
Which of the following is the boolean operator for logical-and?@ &@&&@@ |@|&@B@
Evaluate !(1 && !(0 || 1)).@ True@ False@ Unevaluatable@None of above@A@
Which of the following shows the correct syntax for an if statement?@if expression@ if { expression@ if ( expression )@ expression if@C@
The statement to see if sum is equal to 10 and total is less than 20,and,prints the text string"incorrect.",is@if( (sum = 10) && (total< 20) )printf(@ if( (sum == 10) && (total < 20) )printf(@if( (sum == 10) ¦¦ (total < 20) )printf(@None of these options@B@
which of the following is correct@if(i=0)@if(i==0)@both@none@B@
Which of the following is not a looping statement in C?@while@until@do@for@B@
Which of the following is not a jump statement in C++?@break@goto@exit@switch@D@
Which of the following is selection statement in C++?@break@goto@exit@switch@D@
The continue statement@resumes the program if it is hanged@resumes the program if it was break was applied@skips the rest of the loop in current iteration@all of above@C@
When does the code block following while(x<100) execute?@When x is less than one hundred@When x is greater than one hundred@When x is equal to one hundred@While it wishes@A@
what will happen condition is if(x<8) and input is 10@not compiled@skip this staze@both@none@B@
If there is two conditions the "else" reqired are@1@2@3@4@A@
In menu selection routine which conditional loop is used@while@do While@for@none@C@
For equality comparisons which of the following can used@if@else@switch@none@C@
Which is more efficent@if@switch@both@none@B@
Which of the following can be nested@if@switch@both@none@C@
Which is more flexible or versatile@if-else@switch@both@none@A@
Flow of control in a programe can be of type@sequentially@selectivly@iterativly@all@D@
In switch statement  most comman cases are put at@last@first@anywhere@none@B@
