Computer Science, asked by rashi029, 6 months ago

Mention the type of values obtained in the following
expressions:
1. int x; float y; char c;
x+y*c;
2. char c; int a; double d;
c-d/a;
3. double d; int a; long I;
(d/a)*4/I;
4.float f; char c; short s;
(int) f+c/s;
5.int a; float f; double d; char c;
(float) (a/f)-d*c;​

Answers

Answered by AdityaKumarRAONE
3

Answer:

1) result will be float.

Explanation:

I know only this one, sorry

Similar questions