Home / CSE / Object Oriented Programming Using C++ :: Discussion

Discussion :: Object Oriented Programming Using C++

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

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

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment