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

Answer & Solution

Answer: Option A
Solution:
By default, in PHP, class members (properties and methods) are public if no visibility keyword is explicitly specified.
Related Questions on Average

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

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

A). parent

B). super

C). this

D). self

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

A). this

B). parent

C). self

D). static

What is the default access modifier in PHP?

A). public

B). protected

C). private

D). No default modifier

Which access modifier in PHP restricts access to class members?

A). public

B). protected

C). private

D). access

What is encapsulation in PHP?

A). Hiding data implementation details

B). Exposing data publicly

C). Implementing interfaces

D). Inheriting properties

What is the purpose of method overloading in PHP?

A). Different parameters

B). Same parameters

C). Override a method

D). Access private methods

What is the benefit of using polymorphism in PHP?

A). Increased complexity

B). Improved readability

C). Decreased flexibility

D). Increased maintainability

What is the primary purpose of method overriding in PHP?

A). Hide implementation

B). Provide alternative

C). Prevent inheritance

D). Define in parent

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