Question

What is the final value of x after performing the following operations?
int x = 21;
double y = 6;
double z = 14;
y = x / z;
x = 5.5 * y;
(a) 8.25
(b) 5.5
(c) 5
(d) 8

Answer

This answer is hidden. It contains 3 characters.