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-550 topic 1 question 28 discussion

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

Which line of code can be used to replace the INSERT comment in order to output "hello"? class C { public $ello = 'ello'; public $c; public $m; function __construct($y) {
$this->c = static function($f) {
// INSERT LINE OF CODE HERE
};
$this->m = function() {
return "h";
};
}
}
$x = new C("h");
$f = $x->c;
echo $f($x->m);

  • A. return $this->m() . "ello";
  • B. return $f() . "ello";
  • C. return "h". $this->ello;
  • D. return $y . "ello";
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ZhukovPeter
4 years, 4 months ago
class C { public $ello = 'ello'; public $c; public $m; function __construct($y) { $this->c = static function ($f) { return $f() . "ello"; }; $this->m = function () { return "h"; }; } } $x = new C("h"); $f = $x->c; echo $f($x->m);
upvoted 3 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 ...