1.

What will be the output of the following PHP code?
<?php
$First = array("001" => "Ajit", "002" => "Rahul", "003" => "Ats", "004" => "Aju");
$Second = array("005" => "Ajit", "006" => "Rahul", "007" => "Ats", "008" => "Sujit");
$Third = array("009" => "Sujit");
$Forth = array_merge($Second, $Third);
$Result = array_diff($First, $Forth);
print_r($Result);
?>

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


Discussion

No Comment Found

Related MCQs