Computer Science, asked by rinkirai9958, 1 month ago

12. What is the output of the following switch statement ? char c='a'; switch (C) { case 'a': System.out.print("1"); case 'b': System.out.print("2"); case 'c': System.out.print("3"); } System.out.println("Done");​

Answers

Answered by ajith1987aug
0
The output of answer is as below:

1
Done
Similar questions