Q. Which of the following is true about pure virtual functions?
1) Their implementation is not provided in a class where they are declared.
2) If a class has a pure virtual function, then the class becomes abstract
class and an instance of this class cannot be created.
1) Their implementation is not provided in a class where they are declared.
2) If a class has a pure virtual function, then the class becomes abstract
class and an instance of this class cannot be created.
β
Correct Answer: (B)
Only 2