Vidyalelo
Computer Science · Q376

Object Oriented Programming Using C++

Engineering and GATE · Computer Science · question 376

Q376

Which of the following will store the number 320000 as a Float number?

A.
counPop = (float) 3.2e5;
Answer
B.
counPop = (float) 3.2e6;
C.
counPop = (float) .32e5;
D.
counPop = (float) .32e7;
E.
counPop = (float) 3.2-e5;

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board