Zend Certified PHP Engineer 200-550 Question # 66 Topic 7 Discussion

Zend Certified PHP Engineer 200-550 Question # 66 Topic 7 Discussion

200-550 Exam Topic 7 Question 66 Discussion:
Question #: 66
Topic #: 7

What is the result of the following code?

define('PI', 3.14);

class T

{

const PI = PI;

}

class Math

{

const PI = T::PI;

}

echo Math::PI;


A.

Parse error


B.

3.14


C.

PI


D.

T::PI


Get Premium 200-550 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.