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