Computer Science, asked by yashvikhabiya19, 1 month ago

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 amansarrafas24payxgs
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 karmakarrit
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