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"];

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

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What array will you get if you convert an object to an array?

An array with properties of that array as the object's elements
An array with properties of that object as the array's elements
An array with properties of that object as the Key elements
An array with keys of that object as the array's elements

ANSWER DOWNLOAD EXAMIANS APP