12.) Assume the following:
int a = 5, b=3;
float x=9.0, y = 2.11 z=3.0;
Evaluate the following expression: (int)y * 10 + b
13) Assume the following:
int a = 5, b=3,
float x=9.0, y = 2.11 z = 3.0;
Evaluate the following expression: b % a - (int)x
14) Assume the following:
int a = 5, b=3;
float x=9.0, y=2.11 z=3.0;
Evaluate the following expression (int)(y * 10 + b)