Q
Which of the following statements is true about polymorphism?

Answer & Solution

Answer: Option C
Solution:
Polymorphism allows a method to have multiple implementations, meaning that methods can be overridden in child classes with different behaviors while retaining the same method signature.
Related Questions on Average

Which of the following is NOT a principle of OOP?

A). Inheritance

B). Polymorphism

C). Abstraction

D). Linearity

In PHP, what is the default visibility of class members?

A). Public

B). Protected

C). Private

D). Global

What keyword is used in PHP to implement inheritance?

A). extends

B). implements

C). inherits

D). inherits_from

Which keyword is used to access static properties or methods in PHP?

A). this

B). parent

C). self

D). static

What is the benefit of using polymorphism in PHP?

A). Increased complexity

B). Improved readability

C). Decreased flexibility

D). Increased maintainability

What does the final keyword do when applied to a method in PHP?

A). Mark as deprecated

B). Prevent override

C). Define as abstract

D). Enable instantiation

Which access modifier in PHP restricts access to class members?

A). public

B). protected

C). private

D). access

What is the purpose of method overloading in PHP?

A). Different parameters

B). Same parameters

C). Override a method

D). Access private methods

Which keyword is used to access parent class properties in PHP?

A). parent

B). super

C). this

D). self

What is the default access modifier in PHP?

A). public

B). protected

C). private

D). No default modifier