Q. What is the output of the Java code snippet?
Code:
int a=10, b=6; int c = a+b*5; System.out.println(c);
β
Correct Answer: (A)
40
int a=10, b=6; int c = a+b*5; System.out.println(c);
You must be Logged in to update hint/solution