100.0110.D. What would be printed out by the statement: 

 

cout << ((b + 1 >= c) || (d / 2 == 0) && (e % 3 == 0));

                                                                                                

 

Why??

 

            ((b + 1 >= c) || (d / 2 == 0) && (e % 3 == 0)) =

            ((2 + 1 >= 3) || (4 / 2 == 0) && (5 % 3 == 0)) =

            ((3 >= 3) || (2 == 0) && (2 == 0)) =

            ((TRUE) || (FALSE) && (FALSE)) =

((TRUE) || (FALSE)) =

TRUE (=1)