PHP Arrays What function computes the difference of arrays? diff_array array_diff arrays_diff diff_arrays diff_array array_diff arrays_diff diff_arrays ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays What will be the output of the following PHP code?$fruits = array ("apple", "orange", array ("pear", "mango"), "banana");echo (count($fruits, 1)); 4 5 3 6 4 5 3 6 ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays What functions count elements in an array?1. count2. Sizeof3. Array_Count4. Count_array Option 2 and 4 Option 3 and 4 Option 1 and 4 Option 1 and 2 Option 2 and 4 Option 3 and 4 Option 1 and 4 Option 1 and 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays What will be the output of the following PHP code?$state = array ("Karnataka", "Goa", "Tamil Nadu", "Andhra Pradesh");echo (array_search ("Tamil Nadu", $state) ); False 1 True 2 False 1 True 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays Assume you would like to sort an array in ascending order by value while preserving key associations. Which of the following PHP sorting functions would you use? krsort() usort() sort() asort() ksort() krsort() usort() sort() asort() ksort() ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays What will be the output of the following PHP code ?$a = array(12, 5, 2);echo(array_product($a)); 120 024 010 060 120 024 010 060 ANSWER DOWNLOAD EXAMIANS APP