Computer Science, asked by geetaneja2005, 5 months ago

Give the correct output of the following code when fb = 45:
switch(fb)
case 65: System.out.println("Finland"); break;
case 45 : System.out.println("France”);
case 55 : System.out.print("Flora"); break;
case 35 : System.out.println("Invalid Code");
}​

Answers

Answered by AdityaRaj626
0

Answer:

THE OUTPUT WILL BE :- France

Similar questions