Q
What is encapsulation in PHP?

Answer & Solution

Answer: Option A
Solution:
Encapsulation in PHP refers to hiding the implementation details of data and methods within a class, exposing only the necessary interfaces to interact with the class.
Related Questions on Average

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

A). Public

B). Protected

C). Private

D). Global

Which of the following statements is true about polymorphism?

A). It allows a class to inherit from multiple classes

B). It allows a class to have multiple constructors

C). It allows a method to have multiple implementations

D). It allows a class to override parent class methods

In PHP, what is the purpose of the final keyword?

A). To mark a method as deprecated

B). To prevent a class from being inherited

C). To specify a constant value

D). To define a global variable

Which access modifier in PHP restricts access to class members?

A). public

B). protected

C). private

D). access

What keyword is used in PHP to implement inheritance?

A). extends

B). implements

C). inherits

D). inherits_from

What is the benefit of using polymorphism in PHP?

A). Increased complexity

B). Improved readability

C). Decreased flexibility

D). Increased maintainability

What does the protected access modifier mean in PHP?

A). Access to all

B). Access to parent class

C). Access to subclass

D). Restricted access

Which of the following is NOT a principle of OOP?

A). Inheritance

B). Polymorphism

C). Abstraction

D). Linearity

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

A). parent

B). super

C). this

D). self

What is the purpose of the interface keyword in PHP?

A). Finalize a class

B). Define a contract

C). Abstract a class

D). Create a subclass