PHP Arrays Which in-built function will add a value to the end of an array? array_unshift() array_push() inend_array() into_array() array_unshift() array_push() inend_array() into_array() ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays What will be the output of the following PHP code?$a = array("a"=>"red", "b"=>"green", "c"=>"blue");echo array_shift($a);print_r ($a); blue green red none of the mentioned blue green red none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays Which array function checks if the specified key exists in the array? array_keys_exists() array_key_exist() array_key_exists() arrays_key_exists() array_keys_exists() array_key_exist() array_key_exists() arrays_key_exists() ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays Which function returns an array consisting of associative key/value pairs? count_values() count() array_count_values() array_count() count_values() count() array_count_values() array_count() ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays PHP’s numerically indexed array begin with position ______. 1 2 -1 0 1 2 -1 0 ANSWER DOWNLOAD EXAMIANS APP
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"]; population 11,35,000 11,35,000 karnataka 11,35,000 karnataka population population 11,35,000 11,35,000 karnataka 11,35,000 karnataka population ANSWER DOWNLOAD EXAMIANS APP