Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
C++ Programming Program Design
Quiz 12: Pointers, Classes, Virtual Functions, Abstract Classes, and Lists
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Short Answer
The ____________________ of a base class automatically makes the destructor of a derived class virtual.
Question 42
Short Answer
Consider the following statements: int x; int &y = x; The second statement declares y to be a(n)____________________ of x.
Question 43
Short Answer
The copy constructor automatically executes when,as a parameter,an object is passed by ____________________.
Question 44
Short Answer
Once a class contains one or more pure virtual functions,then that class is called a(n)____________________ class.
Question 45
Short Answer
For classes with pointer member variables,you should include the copy constructor and the ____________________ in the class.
Question 46
Short Answer
The statement that declares board to be a pointer to a pointer is: int ____________________;
Question 47
Short Answer
The binding of virtual functions occurs at program ____________________ time.
Question 48
Short Answer
The ____________________ of a list is the number of elements in the list.
Question 49
Short Answer
Consider the following statements: class shape { public: virtual void draw()= 0; virtual void move(double x,double y)= 0; . . . }; The code above is an example of a(n)____________________ class definition.