What is the result? Given the code fragment: What is the result? Given the code fragment: What is the result? A. A B C B. A B C D E C. A B D E D. Compilation fails. Show Hint ← Previous question Next question →
Mick B Answer is C. first iteration of the inner loop doesn’t get to print “C” due to the break in the if statement. The continue statement is irrelevant as outer loop will continue from that point anyways. Reply
Answer is C. first iteration of the inner loop doesn’t get to print “C” due to the break in the if statement. The continue statement is irrelevant as outer loop will continue from that point anyways.
C