An abstract class in PHP OOP is a class that cannot be instantiated and is meant to be extended by other classes.

  • TRUE
  • FALSE
  • nan
  • nan
An abstract class in PHP OOP is indeed a class that cannot be instantiated directly and is intended to be extended by other classes. It serves as a blueprint or base class from which other classes can be derived. Abstract classes provide common functionality and structure that can be inherited and specialized by their child classes. By extending an abstract class, child classes can inherit its properties and methods and can also implement their own additional functionality. For further information, visit: http://php.net/manual/en/language.oop5.abstract.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *