2005 Apr 06 C++ Lessons by Nick Morrow Lesson 2 Quiz 1 If you haven't studied lesson 1 you can find it in the Files section here: http://groups.yahoo.com/group/CPlusPlusforeCSandOS2 Questions: Given: const int x = 7, y; 1. Which is a literal constant? A. 7 B. x C. y D. int Given: const int x = 7; float y = 14; 2. Which is a named constant? A. y B. 7 C. 14 D. x 3. The data type "string" is a fundamental data type? A. True B. False 4. Which data type requires the least amount of memory? one like type variable: A. char B. int C. float D. double Bonus: Data type "long" requires more memory than "int"? A: True B: False