Ques 1 Operator
What is the output of the following code ?
class Test { public static void main(String[] args){ int a=10; int b=a; a++; int c=b; c++; System.out.println(b); } }
Ques 2 Operator
What is the result of the following expression: 5 / 2.0?
Ques 3 Operator
Which operator is used to perform logical negation in Java?