PHP Arrays
What will be the output of the following php code?
$states = array("karnataka" => array( "population" => "11,35,000", "captial" => "Bangalore"),"Tamil Nadu" => array( "population" => "17,90,000","captial" => "Chennai") );
echo $states["karnataka"]["population"];

11,35,000
karnataka population
karnataka 11,35,000
population 11,35,000

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
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));

Array ( [0] => NYC [1] => London )
Array ( [1] => NYC [0] => London )
Array ( [1] => Mumbai [0] => Beijing )
Array ( [0] => Mumbai [1] => Beijing )

ANSWER DOWNLOAD EXAMIANS APP