Q. What is the output of the Java code snippet below?
Code:
int a = 20, b=30; int total = a>10&&b<10?65:75; System.out.println(total);
β
Correct Answer: (C)
75
int a = 20, b=30; int total = a>10&&b<10?65:75; System.out.println(total);
You must be Logged in to update hint/solution