1.

What will be the output of the following PHP code ?
<?php
$Color = array("R" => "Red", "G" => "Green", "B" => "Blue", "Y" => "Yellow");
$Result = array_flip($Color);
print_r($Result);
?>

A. Error
B. Nothing
C. None of these
Answer» B. Nothing


Discussion

No Comment Found

Related MCQs