Loading

Exercise Number: 1

Q1. What are the different types of operators in Java?

Q2. Explain the difference between == and = operators in Java.

Q3. What is the output of the following code?

int x = 5; System.out.println(x++); // Output? System.out.println(++x); // Output?