Question: $population = array("Ohio" => "11,421,267", "Iowa" => "2,936,760"); print_r(array_values($population));
A
B
C
D
Array
B
11421267, 2936760
C
Array ( [0] => 11,421,267 [1] => 2,936,760 )
D
Array (11421267,2936760)
Note: Not available
Which of the following statement is/are faster?