Computer Science, asked by GeekyJS, 8 months ago

What are the resultant data types if the following implicit conversion are performed? Show the result with flow lines.

int i; float f; double d; char c; byte b;

a) i + c/b;
b) f/d + c*f;
c) i + f – c + b/d;​

Answers

Answered by Anonymous
8

Answer:

a. int, char, double

b. float, double, char, float

c. int, float, byte, char

d. float, int, char, short

e. int, float, char, byte, double

f. int, char, float, byte

Answered by soumya235
5

Explanation:

Answer:

a. int, char, double

b. float, double, char, float

c. int, float, byte, char

d. float, int, char, short

e. int, float, char, byte, double

f. int, char, float, byte

please mark as brainliest

Similar questions