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 21 characters.