PHP Arrays
What will be the output of the following PHP code ?
$a = array("a" => "Jaguar", "b" => "Land Rover", "c" => "Audi", "d" => "Maseratti");
echo array_search("Audi", $a);

PHP Arrays
There are three different kind of arrays:

Numeric array, String array, Multidimensional array
Const array, Associative array, Multidimensional array
Numeric array, Associative array, Dimensional array
Numeric array, Associative array, Multidimensional array

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$place = array("NYC", "LA", "Paris");
array_pop($place);
$place1 = array("Paris");
$place = array_merge($place, $place1);
print_r($place);

Array ( [0] => NYC [1] => LA [2] => Paris [3] => Paris )
Array ( [0] => NYC [1] => LA [2] => Paris)
Array ( [0] => LA [1] => Paris [2] => Paris )
None of the mentioned

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 Key elements
An array with keys of that object as the array's elements
An array with properties of that object as the array's elements

ANSWER DOWNLOAD EXAMIANS APP