PHP Arrays PHP’s numerically indexed array begin with position ______. 0 -1 2 1 0 -1 2 1 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)); 010 060 024 120 010 060 024 120 ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays Which function will return true if a variable is an array or false if it is not? this_array() is_array() do_array() in_array() this_array() is_array() do_array() in_array() ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays Which function can be used to move the pointer to the previous array position? prev() before() previous() last() prev() before() previous() last() 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)); 3 6 5 4 3 6 5 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Arrays What will be the output of the following PHP code?$fruits = array ("apple", "orange", "banana");echo (next($fruits));echo (next($fruits)); appleapple appleorange orangeorange orangebanana appleapple appleorange orangeorange orangebanana ANSWER DOWNLOAD EXAMIANS APP