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 BMW, Volvo and Toyota
I like Volvo, BMW and Toyota
I like Toyota, BMW and Volvo
I like Volvo, Toyota and BMW

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 array'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

ANSWER DOWNLOAD EXAMIANS APP