PHP Arrays
Which array function checks if the specified key exists in the array?

array_keys_exists()
array_key_exists()
array_key_exist()
arrays_key_exists()

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$a1 = array("a" => "red", "b" => "green", "c" => "blue", "d" => "yellow");
$a2 = array("e" => "red", "f" => "green", "g" => "blue", "h" => "orange");
$a3 = array("i" => "orange");
$a4 = array_combine($a2, $a3);
$result = array_diff($a4, $a2);
print_r($result);

Array ( [d] => yellow [h] => orange )
Array ( [d] => yellow )
Array ( [i] => orange )
Array ( [h] => orange )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$a=array("A","Cat","Dog","A","Dog");
$b=array("A","A","Cat","A","Tiger");
$c=array_combine($a,$b);
print_r(array_count_values($c));

Array ( [A] => 5 [Cat] => 2 [Dog] => 2 [Tiger] => 1 )
Array ( [A] => 6 [Cat] => 1 [Dog] => 2 [Tiger] => 1 )
Array ( [A] => 2 [Cat] => 2 [Dog] => 1 [Tiger] => 1 )
Array ( [A] => 2 [Cat] => 1 [Dog] => 4 [Tiger] => 1 )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
There are three different kind of arrays:

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

ANSWER DOWNLOAD EXAMIANS APP