PrepAway - Latest Free Exam Questions & Answers

Tag: Exam 200-550

Exam 200-550: Zend Certified PHP Developer

which classes can be instantiated?

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 { }


Page 15 of 23« First...10...1314151617...20...Last »