Computer Science, asked by Monumanisha, 3 days ago

evaluate the given expression. int a=4, b=2, c=8; System.out.println(a+b*c%a) ; System.out.println(a+b/c+a); System.out.println(a%b+b%c+b/a+c/b) ;​

Answers

Answered by gokul16bit070
3

Answer:

4

8

4

Explanation:

* is the first priority so, b*c will execute first. after that % executes

Similar questions