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.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: In _ binding, the necessary code to
Q26: The _ constructor is executed when an
Q30: In a _ copy, two or more
Q31: Which of the following would be appropriate
Q32: The binding of virtual functions occurs at
Q38: A class _ automatically executes whenever a
Q39: The statement that declares board to be
Q43: The _ of a list is the
Q44: The C++ operator _ is used to
Q49: What is the output of the following