200-550 Web TestEngine demo

Exit VCEDump 200-550 Zend Certified PHP Engineer
Question 1 of 34
0% complete
Q1 Single choice

What is the output of the following code?

class Bar {
private $a = 'b';
public $c = 'd';
}
$x = (array) new Bar();

echo array_key_exists('a', $x) ? 'true' : 'false';
echo '-';
echo array_key_exists('c', $x) ? 'true' : 'false';

Previous Check answer

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in