Chapter 3 Checkpoint Questions Flashcards
1
Q
What header file must be included in programs using cin?
A
iostream
2
Q
T/F: cin requires the user to press the [Enter] key when finished entering data.
A
True
3
Q
Assume value is an integer variable. If the user enters 3.14 in response to the following programming statement, what will be stored in value?
cin»_space; value;
A
3
4
Q
A program has the following variable definitions.
long miles;
int feet;
float inches;
A
cin»_space; miles»_space; feet»_space; inches;