1.

What will be the output of the following PHP code?
<?php
$First = array("Ajit", "Rahul");
$Second = array("Ats", "Aju");
$Third = array_merge($First, $Second);
$Fourth = array("001", "002", "003", "004");
$Result = array_combine($Fourth, $Third);
print_r($Result);
?>

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


Discussion

No Comment Found

Related MCQs