πŸ“Š JAVA
Q. 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) Hello
  • (B) World
  • (C) HelloWOrld
  • (D) Compilation Error
πŸ’¬ Discuss
βœ… Correct Answer: (C) HelloWOrld

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
180
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Shiva Ram
Publisher
πŸ“ˆ
91%
Success Rate