Q
Which OOP concept allows a class to inherit from multiple classes?

Answer & Solution

Answer: Option D
Solution:
Multiple inheritance is an OOP concept where a class can inherit properties and methods from more than one superclass. However, PHP does not support multiple inheritance directly.
Related Questions on Average

Which magic method is called when an undefined property is accessed in PHP?

A). __get()

B). __set()

C). __call()

D). __isset()

Which concept allows a method in a subclass to have the same name as a method in its superclass?

A). Encapsulation

B). Inheritance

C). Polymorphism

D). Abstraction

What does inheritance provide in OOP?

A). Code reusability

B). Data security

C). Object creation

D). Method overloading

What is the purpose of the interface keyword in PHP?

A). To define a class that cannot be instantiated

B). To define a contract for classes to implement

C). To define a blueprint for objects

D). To prevent a class from being inherited

Which keyword is used to access properties or methods within the same class in PHP?

A). public

B). protected

C). private

D). $this

What is a class in PHP?

A). An instance of an object

B). A blueprint for creating objects

C). A method to access properties

D). A function to store variables

What is an object in PHP?

A). A class method

B). A function parameter

C). An instance of a class

D). A variable name

What is the purpose of the __construct() method in PHP?

A). To define class properties

B). To create objects

C). To initialize object properties

D). To access superclass methods

Which method is automatically called when an object is destroyed in PHP?

A). __delete()

B). __destroy()

C). __dispose()

D). __destruct()

What is the visibility of properties or methods declared as private in PHP?

A). Public

B). Protected

C). Private

D). Accessible only within the class