πŸ“Š JAVA
Q. What will be the output of the following Java code?
class Myexception extends Exception
{
int detail;
Myexception(int a)
{
detail = a;
}
public String toString()
{
return "detail";
}
}
class Output
{
static void compute (int a) throws Myexception
{
throw new Myexception(a);
}
public static void main(String args[])
{
try
{
compute(3);
}
catch(Exception e)
{
System.out.print("Exception");
}
}
}
  • (A) 3
  • (B) Exception
  • (C) Runtime Error
  • (D) Compilation Error
πŸ’¬ Discuss
βœ… Correct Answer: (B) Exception

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
94
Total Visits
πŸ“½οΈ
12 mo ago
Published
πŸŽ–οΈ
Ritu Nagar
Publisher
πŸ“ˆ
96%
Success Rate