Computer Science, asked by kshitijcloudline, 5 months ago

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 rammenon2525
11

Answer:

(i).Object Oriented

   Robust and Secure

(ii).Wrong Input

(iii).Platform Independent

Hope this helps

Explanation:

Similar questions