adplus-dvertising
frame-decoration

Question

What is the output of this program?
class Main
{
public static void main(String args[])
  {
   try
   {
    int i, sum;
    sum = 10;
    for (i = -1; i < 3 ;++i)
    {
     sum = (sum / i);
     System.out.print(i);
    }
   }
   catch(ArithmeticException e)
   {
    System.out.print("0");
   }
  }
}

a.

-1

b.

0

c.

-10

d.

-101

Answer: (c).-10

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?

Similar Questions

Discover Related MCQs

Q. Which exception is thrown when divide by zero statement executes?

Q. In which of the following package Exception class exist?

Q. Which of these is a super class of all errors and exceptions in the Java language?

Q. Which statement is true?

Q. Which statement is true?

Q. Which statement is true?

Q. Which four can be thrown using the throw statement?

1. Error
2. Event
3. Object
4. Throwable
5. Exception
6. RuntimeException

Q. Which statement is true?

Q. Which of these keywords is used to by the calling function to guard against the exception that is thrown by called function?

Q. Which of these operator is used to generate an instance of an exception than can be thrown by using throw?

Q. Which of these class is related to all the exceptions that are explicitly thrown?

Q. Which of these keywords is used to generate an exception explicitly?

Q. What exception thrown by parseInt() method?

Q. Which of these handles the exception when no catch is used?

Q. Which of these class is related to all the exceptions that cannot be caught?

Q. Which of these class is related to all the exceptions that can be caught by using catch?

Q. Which of these is a super class of all exceptional type classes?

Q. Which of these classes is super class of Exception class?

Q. Which of these methods return localized description of an exception?

Q. Which of these methods is used to print stack trace?