What is the purpose of the 'default' case in a 'switch' statement in C++?
A. Executes before any other cases
B. Executes after all other cases
C. Executes when no case matches
D. Executes instead of the 'case' cases
Answer: Option C
A. Executes before any other cases
B. Executes after all other cases
C. Executes when no case matches
D. Executes instead of the 'case' cases
Answer: Option C
What is the syntax for the 'if' statement in C++?
A. if (condition) then statement;
B. if (condition) then { statement; }
C. if { condition } then { statement; }
D. if (condition) { statement; }
What is the purpose of the 'else' statement in C++?
A. Executes after the 'if' block
B. Executes before the 'if' block
C. Executes when the 'if' condition is false
D. Executes regardless of the 'if' block
What is the correct syntax for the 'switch' statement in C++?
A. switch (expression) { case constant1: statement1; case constant2: statement2; }
B. switch (expression) { case constant1: statement1; break; case constant2: statement2; break; default: defaultStatement; }
C. switch (expression) { case constant1: statement1; default: defaultStatement; }
D. None of the above
A. Compilation error
B. HelloGoodbye
C. Hello
D. Goodbye
Join The Discussion