Computer Science, asked by deepikasingh15, 1 year ago

plz answer and help me for my test. ​

Attachments:

Answers

Answered by 2795mcgm
0

Answer:

double a =5.3;

float b=a;

is incorrect

Explanation:

double a =5.3;

float b=a;

is incorrect because double storage size is 8 byte which bigger than float storage size 4 byte. hence it cannot perform initialization

Similar questions