Arrange the following such that the a is 10 and b is 70 at the end of the program. Unselect the unwanted statements using the check box.
![]() |
int c = b - a; |
![]() |
int a = 31, b = 40; |
![]() |
b = (a - --b) * c; |
![]() |
b = c%a; |
![]() |
a = ++c; |
![]() |
b= b / a; |
Topic: Modulus Operator In Java