Java Programming
primer-original-v2mediumJava Programming01 Introduction To Javaprimer-original-v2

Java Programming Practice Question

What will be the output of the program? for(int i = 0; i < 3; i++) { switch(i) { case 0: break; case 1: System.out.print("one "); case 2: System.out.print("two "); case 3: System.out.print("three "); } } System.out.println("done");

Answer options

A
one two three done
B
one two three two three done
C
done
D
one two doneone two done Switch takes the values 0, 1 and 2. Case 0 has nothing to execut

Correct answer: one two three two three done

Explanation

Quick AnswerThe correct answer is one two three two three done because it directly addresses the core logic of Java Programming.

This question has been retained as-is due to its unique context.

Related Java Programming questions

Practice more Java Programming questions

PrimerPrep has independently reviewed practice questions and coding exercises — all free.