What will be the output of the following php code?
<?php
$states = array("karnataka" => array
( "population" => "11,35,000", "capital" => "Bangalore"),
"Tamil Nadu" => array( "population" => "17,90,000",
"capital" => "Chennai") );
echo $states["karnataka"]["population"];
?>
- karnataka 11,35,000
- 11,35,000
- population 11,35,000
- karnataka population
(b).11,35,000
need an explanation for this answer? contact us directly to get an explanation for this answer