Question:What will be the following script's output? <?php $countryes=array(“India”,”Japan”,”Uk”); $country=array_shift($countryes); print_r($countryes); ?>
A Array ( [0] => ”India” [1] => ” Japan” )
B Array ( [0] => ”India” [1] => ” Japan” [2]=>”Uk”)
C Array ( [1] => ”Japan” [2] => ”Uk” )
D Array ( [0] => ”Japan” [1] => ”Uk” )
+ AnswerD
+ Report