1.

What will be the output of the following PHP code?
<?php
$Student = array("Rahul", "Ajit", "Ats");
echo $Student[0] . " is the friend of " . $Student[1] . " and " . $Student[2] . ".";
?>

A. Rahul
B. Error
C. Rahul is the friend of Ajit and Ats.
D. Nothing
E. None of these
Answer» D. Nothing


Discussion

No Comment Found

Related MCQs