Examveda
Examveda

What will be the output of the following Java code?
class Output 
{
    public static void main(String args[]) 
    {    
         int x , y = 1;
         x = 10;
         if (x != 10 && x / 0 == 0)
             System.out.println(y);
         else
             System.out.println(++y);
    } 
}

A. 1

B. 2

C. Runtime error owing to division by zero in if condition

D. Unpredictable behavior of program

Answer: Option B


This Question Belongs to Java Program >> Operators

Join The Discussion

Related Questions on Operators