Which one of the following keywords is used to define an abstract class?

Which one of the following keywords is used to define an abstract class? Correct Answer abstract

The introduction of abstract classes was one of the major changes ushered in with PHP 5. Its inclusion in the list of new features was another sign of PHP’s extended commitment to object-oriented design.

Related Questions

Abstract class A has 4 virtual functions. Abstract class B defines only 2 of those member functions as it extends class A. Class C extends class B and implements the other two member functions of class A. Choose the correct option below.
Which of these keywords are used to define an abstract class?