7. Give the output of the following
program code if value of variable
choice is 'a'. class test { public static
void main() { switch(choice) {case
'a':System.out.print("Java"); case
'b':System.out.print("is "); case
'c':System.out.print("Programming
Language"); default
:System.out.print("wrong choice");
O Java
O Java is
O Java is Programming Language
O Wrong choice
Answers
Answered by
0
Explanation:
Java is Programming Language
Similar questions