Which of the following is correct? (Choose 2)
A. A class can extend more than one class.
B. A class can implement more than one class.
C. A class can extend more than one interface.
D. A class can implement more than one interface.
E. An interface can extend more than one interface.
F. An interface can implement more than one interface.
Which of the following statements about PHP is false? (Choose 2)
A. A final class can be derived.
B. A final class may be instantiated.
C. A class with a final function may be derived.
D. Static functions can be final.
E. Properties can be final.
In the following code, which classes can be instantiated?
abstract class Graphics {
abstract function draw($im, $col);
}
abstract class Point1 extends Graphics {
public $x, $y;
function __construct($x, $y) {
$this->x = $x;
$this->y = $y;
}
function draw($im, $col) {
ImageSetPixel($im, $this->x, $this->y, $col);
}
}
class Point2 extends Point1 { }
abstract class Point3 extends Point2 { }
A. Graphics
B. Point1
C. Point2
D. Point3
E. None, the code is invalid
Which of the following code snippets is correct? (Choose 2)
A. interface Drawable {abstract function draw();}
B. interface Point {function getX();function getY();}
C. interface Line extends Point {function getX2();function getY2();}
D. interface Circle implements Point {function getRadius();}
Type hinting in PHP allows the identification of the following variable types: (Choose 2)
A. String
B. Integer
C. Array
D. Any class or interface type
E. All of the above
What is the name of the PHP function used to automatically load non-yet defined classes?
A. autoload()
B. __autoload()
C. __catch()
D. load()
E. loadClass()
When a class is defined as final it:
A. Can no longer be extended by other classes.
B. Means methods in the class are not over-loadable.
C. Cannot be defined as such, final is only applicable to object methods.
D. Cannot be instantiated.
Which of the following statements about Reflection is correct?
A. Reflection is an extension that can be disabled
B. Reflection is a new extension present only in PHP 5.3+
C. Reflection only allows to reflect on built-in classes
D. Built-in classes can be reflected on command line using php --rc
What is the name of the method that can be used to provide read access to virtual properties in a class?
A. __call()
B. __get()
C. __set()
D. __wakeup()
E. __fetch()
Which of the following is NOT possible using reflection?
A. Analysing of nearly any aspect of classes and interfaces
B. Analysing of nearly any aspect of functions
C. Adding class methods
D. Implement dynamic construction (new with variable class name)
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Zend exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 200-550 exam preparations and Zend certification application, do not hesitate to visit our Vcedump.com to find your solutions here.