1.

  class Output{	public static void main(String args[])	{		boolean a = true;		boolean b = false;		boolean c = a ^ b;		System.out.println(!c);	}}
30.Which of these have highest precedence?

A. ()
B. ++
C. *
D. >>
E.
Answer» B. ++


Discussion

No Comment Found