Object-Oriented
1.

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

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

i)

B.  

ii)

C.  

i) and ii)

D.  

iii) and iv)

2.

Which version of PHP introduced the advanced concepts of OOP?

A.  

PHP 4

B.  

PHP 5

C.  

PHP 5.3

D.  

PHP 6

3.

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

A.  

_clone(targetObject);

B.  

destinationObject = clone targetObject;

C.  

destinationObject = _clone(targetObject);

D.  

destinationObject = clone(targetObject);

4.

The class from which the child class inherits is called ________

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

Only i)

B.  

ii), iii) and iv)

C.  

Only iii)

D.  

ii) and iv)

5.

The class from which the child class inherits is called ________

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

Only i)

B.  

ii), iii) and iv)

C.  

Only iii)

D.  

ii) and iv)

6.

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

i) Abstract classes in PHP are declared with the help of abstract keyword.
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.

A.  

Only i)

B.  

Only iii)

C.  

ii) and iv)

D.  

ii), iii) and iv)

7.

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

i) Abstract classes in PHP are declared with the help of abstract keyword.
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.

A.  

Only i)

B.  

Only iii)

C.  

ii) and iv)

D.  

ii), iii) and iv)

8.

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

A.  

Normal class

B.  

Static class

C.  

Abstract class

D.  

Interface

9.

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

A.  

Normal class

B.  

Static class

C.  

Abstract class

D.  

Interface

10.

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

A.  

Interface

B.  

Object

C.  

Abstract class

D.  

Static class