Multiple Choice
If a switch statement contains no break statements at all,
A) a syntax error will occur
B) each of the case clauses will be executed every time the switch statement is encountered
C) this is equivalent to having the switch statement always take the default clause, if one is present
D) this is not a syntax error but nothing within the switch statement will ever be executed
E) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Q17: How many times will the following loop
Q18: The following loop is syntactically valid:<br>for(int j
Q19: Which of the following would rotate an
Q20: Code Example Ch 06-1<br>In the following example,
Q21: How can the following statement be rewritten
Q23: Write a declaration that initializes an int
Q24: What does the break statement do?<br>A) It
Q25: Rewrite the following nested if-else statements using
Q26: You might choose to use a switch
Q27: Given that s is a String, what