Live quiz

java - Part 48

Question 1 of 25 Hints left: 3
Q1

What will be the output of the following Java code? class Output { public static void main(String args[]) { try { int a = 0; int b = 5; int c = a / b; System.out.print("Hello"); } finally { System.out.print("World"); } } }

  • A
  • B
  • C
  • D