Q. What is the result of the following PHP code?
Code:
<?php
$a = array("Alex", "Bob", "Emily");
array_pop($a);
print_r($a);
?>
β
Correct Answer: (C)
Array([0] => Alex [1] => Bob)