71.
Which of this statement is incorrect?

73.
Which of these statements are incorrect?

74.
What will be the output of the following Java code?
class Output 
{
    public static void main(String args[]) 
    {    
         boolean a = true;
         boolean b = false;
         boolean c = a ^ b;
         System.out.println(!c);
    } 
}

76.
What will be the output of the following Java program?
class Output 
{
    public static void main(String args[]) 
    {    
         int a = 1;
         int b = 2;
         int c;
         int d;
         c = ++b;
         d = a++;
         c++;
         b++;
         ++a;
         System.out.println(a + " " + b + " " + c);
    } 
}

77.
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);
    } 
}

79.
What will be the output of the following Java program?
class bitwise_operator 
{
    public static void main(String args[]) 
    {    
         int a = 3;
         int b = 6;
   int c = a | b;
         int d = a & b;             
         System.out.println(c + " "  + d);
    } 
}

Read More Section(Operators)

Each Section contains maximum 100 MCQs question on Operators. To get more questions visit other sections.