Given:
int a = 5, b = 7, c = 15;
Evaluate each expression below as TRUE or FALSE.
_______ (1) c / b == 2
_______ (2) c % b <= a % b
_______ (3) b + c / a != c - a
Determine the output generated by the following code segments,
assuming the surrounding program code (whatever it is) compiles correctly.