Write a class having a public pure virtual method. You need not put any other members in the class.
What will be an ideal response?
```
class Figure
{
public:
virtual void draw() = 0;
};
```
Computer Science & Information Technology
You might also like to view...
Create a process management utility that allows you to kill processes based on their CPU usage. This kind of utility would be especially useful to system administrators (see Chapter 14, “System Administration”).
What will be an ideal response?
Computer Science & Information Technology
Which of the following is the path to the Align button?
A. (TABLE TOOLS LAYOUT tab | Arrange group) B. (TABLE TOOLS DESIGN tab | Align group) C. (TABLE TOOLS FORMAT tab | Arrange group) D. (TABLE TOOLS FORMAT tab | Align group)
Computer Science & Information Technology