Loading practice questions
Which of the following is used to make an abstract class?
Correct Answer: A — By declaring a pure virtual function in a class
Explanation:
Abstract class should have at least one pure virtual function. Therefore to declare an abstract class one should declare a pure virtual function in a class.