1.

What will be the output of the following PHP code ?
<?php
$name = array("Neha", "Sumi", "Abhay");
for (;count($name) < 5;)
{
if (count($name) == 3)
print $name;
}
?>

A. Error
B. Nothing
C. Neha
D. Abhay
E. Sumi
Answer» B. Nothing


Discussion

No Comment Found

Related MCQs