Zend PHP 5.3 Certification 200-530 Question # 18 Topic 2 Discussion

Zend PHP 5.3 Certification 200-530 Question # 18 Topic 2 Discussion

200-530 Exam Topic 2 Question 18 Discussion:
Question #: 18
Topic #: 2

Given the following code, what will be the value of $a?

$a = array('a', 'b');

array_push($a, array(1, 2));


A.

array('a', 'b', 1, 2)


B.

array(1, 2, 'a', 'b')


C.

array(array(1, 2), 'a', 'b')


D.

None of the above


Get Premium 200-530 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.