1.

What will be the output of the following PHP code?
<?php
$Name = array ("Neha", "Ajit", "Rahul", "Ats");
$Name = array_flip($Name);
echo ($Name[0]);
?>

A. Error
B. Nothing
C. Neha
D. Rahul
E. None of these
Answer» B. Nothing


Discussion

No Comment Found

Related MCQs