give the output of the following if. int a, b=10;. a=15/3*b;. System.out.println("a="+a);
please answer me as soon as possible
Answers
Answered by
1
Answer:
Output:
a = 30
I hope you find it useful... If you have any query do comment, I will try to solve it...
Answered by
1
Answer:
Given that b=10;
evaluate the value a = 15 / 3 * b
a = 15 / 3 * 10
a = 5 * 10
a = 50 (ANSWER)
Similar questions