Computer Science, asked by nehal5643, 11 months ago

If a= 5 and b= 9 then , what is !(a++ * b-- % a != b++ % a--)

Answers

Answered by Varalakshmi2317
0

Answer:

a++×b%a!=b++%a--=true

Explanation:

6×8%6!=9%5

48%6=4

0!=4

true

it returns 1 if it is true

Answered by sswaraj04
0

Answer:

0

Explanation:

a++ * b-- % a != b++ % a--

 5   * 9   % 6 != 8    % 6

      3 !=2

true or 1

!(a++ * b-- % a != b++ % a--)

=!(true) =false

Hope it helps :-)

Similar questions