Question: What will be the following script output? <?php $names=array(“Robi”,”Soni”,”Roni”); $name=array_pop($names); print_r($names); ?>
A
B
C
D
Array ( [0] => “Robi” [1] => ”Soni” =>”,”Roni”);
B
Array ( [0] ] => “Robi” [1] => ”Soni” ] => ”Roni”)
C
Array ([0] => ”Soni”[1] =>”Roni”)
D
Array ( [0] => “Robi” [1] => ”Soni” )
Note: Not available