1.

What will be the output of the following PHP code ?
<?php
$Color1 = array("A" => "Red", "B" => "Green", "C" => "Blue", "D" => "Yellow");
$Color2 = array("E" => "Red","F" => "Green", "H" => "Blue");
$Result = array_intersect($Color1, $Color2);
print_r($Result);
?>

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


Discussion

No Comment Found

Related MCQs