Question

Which operation does not take place in the following example?
int x = 21;
double y = 6;
double z = 14;
y = x / z;
x = 5.5 * y;
(a) implicit conversion
(b) promotion
(c) explicit conversion
(d) truncation

Answer

This answer is hidden. It contains 3 characters.