Question:
$population=array("Ohio"=>"11,421,267","Iowa"=>"2,936,760"); print_r(array_values($population));Which of the following is/are correct output for above Statement ?
A Array ( [0] => 11,421,267 [1] => 2,936,760 )
B Array values ( [0] => 11,421,267 [1] => 2,936,760 )
C array("Ohio" => "11,421,267", "Iowa" => "2,936,760");
D array values("Ohio" => "11,421,267", "Iowa" => "2,936,760");
+ AnswerA
+ Report