PHP Arrays
What will be the output of the following PHP code?
$fruits = array ("apple", "orange", "banana");
echo (next($fruits));
echo (next($fruits));

orangebanana
orangeorange
appleorange
appleapple

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$a1 = array("red", "green");
$a2 = array("blue", "yellow");
print_r(array_merge($a1, $a2));

Array ( [0] => blue [1] => yellow [2] => red [3] => green )
Array ( [0] => red [1] => green)
Array ( [0] => blue [1] => yellow )
Array ( [0] => red [1] => green [2] => blue [3] => yellow )

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)
None of the mentioned
Array ( [0] => LA [1] => Paris [2] => Paris )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$a1 = array("red", "green");
$a2 = array("blue", "yellow");
$a3 = array_merge($a1, $a2);
$a4 = array("a", "b", "c", "d");
$a = array_combine($a4, $a3);
print_r($a);

Array ( [a] => red [b] => green [c] => blue [d] => yellow )
Array ( [a] => blue [b] => yellow [c] => red [d] => green )
Array ( [0] => blue [1] => yellow [2] => red [3] => green )
Array ( [0] => red [1] => green [2] => blue [3] => yellow )

ANSWER DOWNLOAD EXAMIANS APP