Give output
switch (opn)
{
case 'a':
System.out.println("Platform Independent");
break;
case 'b':
System.out.println("Object Oriented");
case 'c':
System.out.println("Robust and Secure");
break;
default:
System.out.println("Wrong Input");
}
When (i) opn = 'b' (ii) opn = 'x' (iii) opn = 'a'
Answers
Answered by
11
Answer:
(i).Object Oriented
Robust and Secure
(ii).Wrong Input
(iii).Platform Independent
Hope this helps
Explanation:
Similar questions