Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam 200-710 topic 1 question 67 discussion

Actual exam question from Zend's 200-710
Question #: 67
Topic #: 1
[All 200-710 Questions]

What is the output of the following code?

  • A. 5
  • B. 10
  • C. 50
  • D. Fatal error
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ZhukovPeter
Highly Voted 4 years, 4 months ago
class Number { private $v; private static $sv = 10; public function __construct($v) { $this->v = $v; } public function mul(){ return static function ($x) { return isset($this) ? $this->v * $x : self::$sv * $x; }; } } $one = new Number(1); $two = new Number(2); $double = $two->mul(); $x = Closure::bind($double, null, 'Number'); echo $x(5);
upvoted 6 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...