πŸ“Š JAVA
Q. What will be the output of the following Java code?
Code:
class Output 
{
    public static void main(String args[]) 
    {
       try 
       {
           int a = 0;
           int b = 5;
           int c = b / a;
           System.out.print("Hello");
       }
       catch(Exception e) 
       {
           System.out.print("World");
       } 
    }
}
  • (A) Hello
  • (B) World
  • (C) HelloWOrld
  • (D) Compilation Error
πŸ’¬ Discuss
βœ… Correct Answer: (B) World

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
132
Total Visits
πŸ“½οΈ
12 mo ago
Published
πŸŽ–οΈ
Ram Avtar Sharma
Publisher
πŸ“ˆ
87%
Success Rate