1.

What will be the output of the following PHP code ?
<?php
$Car = array("J" => "Jaguar", "L" => "Land Rover", "A" => "Audi", "M" => "Maseratti");
echo array_search("Maseratti", $Car);
?>

A. J
B. L
C. A
D. M
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs