Teacher Name:Mr. Rung Date of Lesson: March
Course Name: C++ Lesson Name: Chap 13.4a
Student Name
Password
Objective To complete the workbook problems.
Primary Focus Select the correct answers below.
Site Links Course Home Page
Additional Resources
Site Links
Question #1
The const keyword can be used in functions to guarantee that no changes are made to parameters being passed to the function.
True False
Question #2
If a programmer does not implement a copy constructor when he or she creates a class, the class will not compile.
Question #3
To manually allocate memory for some purpose, you can use the new operator.
Question #4
Putting the const keyword after the closing parenthesis but before the semicolon of a member function definition allows a function to change any member data.
Question #5
A destructor is necessary when an object manually allocates memory.