adplus-dvertising
frame-decoration

Question

Which keyword is used to refer to properties or methods within the class itself?

a.

private

b.

public

c.

protected

d.

$this

Posted under Object Oriented PHP PHP

Answer: (d).$this

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which keyword is used to refer to properties or methods within the class itself?

Similar Questions

Discover Related MCQs

Q. Which keyword allows class members (methods and properties) to be used without needing to instantiate a new instance of the class?

Q. Which of the following advanced OOP features is/are not supported by PHP?

i) Method overloading
ii) Multiple Inheritance
iii) Namespaces
iv) Object Cloning

Q. Which version of PHP introduced the advanced concepts of OOP?

Q. Which one of the following is the right way to clone an object?

Q. The class from which the child class inherits is called..

i) Child class
ii) Parent class
iii) Super class
iv) Base class

Q. Which of the following is/are true for an abstract class?

i) A class is declared abstract by prefacing the definition with the word abstract.
ii) A class is declare abstract by using the keyword implements.
iii) It is a class that really isn’t supposed to ever be instantiated but instead serves as a base class.
iv) Attempting to instantiate an abstract class results in an error.

Q. If one intends to create a model that will be assumed by a number of closely related objects, which class must be used?

Q. If your object must inherit behavior from a number of sources you must use a/an

Q. Which method is used to tweak an object’s cloning behavior?

Q. Which feature allows us to call more than one method or function of the class in single instruction?

Q. Which magic method is used to implement overloading in PHP?