int z = 10,
M=( 5* + + z) % 4;
Answers
Answered by
1
Answer:
z = 10
so M = ( 5 * ++ z ) % 4;
There can't be two pluses like that, if it is then there can't be any other value so I will consider 1 +, but there cant be plus there after * operator so I wont count the Plus.
M = ( 5 * z) %4
Bracket First
M = 50 % 4
M = 2
Answered by
2
Answer:
Initially, z=10
M=(5* ++z) %4
=( 5* 11 ) *4
= 55%4
=3
Remember that ++z is prefix so that's why z becomes 11.
Correct answer:-
- 3
Similar questions
Math,
1 month ago
Social Sciences,
1 month ago
English,
2 months ago
English,
2 months ago
Hindi,
10 months ago