Sail E0 Webinar
Question
What will be the output of the following PHP code ?$city_west = array("NYC", "London");$city_east = array("Mumbai", "Beijing");print_r(array_replace($city_west, $city_east));
Options:
A .  Array ( [1] => NYC [0] => London )
B .  Array ( [0] => Mumbai [1] => Beijing )
C .  Array ( [0] => NYC [1] => London )
D .  Array ( [1] => Mumbai [0] => Beijing )
Answer: Option B

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

More Questions on This Topic :


Latest Videos

Latest Test Papers