PHP Arrays
What elements will the following script output?
$array = array (true => 'a', 1 => 'b');
var_dump ($array);

It will output NULL
None
1 => 'b'
True => 'a', 1 => 'b'

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
There are three different kind of arrays:

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

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$fruits = array ("apple", "mango", "peach", "pear", "orange");
$subset = array_slice ($fruits, 2);
print_r ($subset);

Array ( [0] => apple [1] => mango [2] => peach )
Array ( [0] => peach [1] => pear [2] => orange )
Array ( [0] => peach )
Array ( [0] => apple [1] => mango )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code ?
$age = array("Harry" => "21", "Ron" => "23","Malfoy" => "21");
array_change_key_case($age, CASE_UPPER);
array_pop($age);
print_r($age);

Array ( [HARRY] => 21 [RON] => 23 )
Array ( [HARRY] => 21 [RON] => 23 [MALFOY] => 21 )
Array ( [Harry] => 21 [Ron] => 23 )
Array ( [Harry] => 21 [Ron] => 23 [Malfoy] => 21 )

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 ( [h] => orange )
Array ( [i] => orange )
Array ( [d] => yellow [h] => orange )
Array ( [d] => yellow )

ANSWER DOWNLOAD EXAMIANS APP