National_Instruments
200-500 · Question #192
200-500 Question #192: Real Exam Question with Answer & Explanation
Sign in or unlock 200-500 to reveal the answer and full explanation for question #192. The question stem and answer options stay visible for context.
Question
In the following code, which class can be instantiated? 1 <?php 2 abstract class Graphics { 3 abstract function draw($im, $col); 4 } 6 abstract class Point1 extends Graphics { 7 public $x, $y; 8 function __construct($x, $y) { 9 $this->x = $x; 10 $this->y = $y; 11 } 12 function draw($im, $col) { 13 ImageSetPixel($im, $this->x, $this->y, $col); 14 } 15 } 17 class Point2 extends Point1 { } 19 abstract class Point3 extends Point2 { } 20 ?>
Options
- AGraphics
- BPoint1
- CPoint2
- DPoint3
- ENone, the code is invalid
Unlock 200-500 to see the answer
You've previewed enough free 200-500 questions. Unlock 200-500 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.