1.

What will be the output of the following PHP code?
<?php
$Country = array("India", "England", "USA");
echo "I like " . $Country[2] . ", " . $Country[1] . " and " . $Country[0] . ".";
?>

A. Error
B. Nothing
C. India England USA
D. I like USA, England and India.
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs