PHP Arrays
What will be the output of the following PHP code?
$cars = array("Volvo", "BMW", "Toyota");
echo "I like " . $cars[2] . ", " . $cars[1] . " and " . $cars[0] . ".";

I like Volvo, BMW and Toyota
I like BMW, Volvo and Toyota
I like Volvo, Toyota and BMW
I like Toyota, BMW and Volvo

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 ( [0] => blue [1] => yellow [2] => red [3] => green )
Array ( [a] => red [b] => green [c] => blue [d] => yellow )
Array ( [a] => blue [b] => yellow [c] => red [d] => green )
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 ?
$array = array("red", "green");
array_push($array, "blue", "yellow");
print_r($array);

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

ANSWER DOWNLOAD EXAMIANS APP