1.

What will be the output of the following PHP code?
<?php
$Student1 = array("Neha", "Rahul");
$Student2 = array("Sujit", "Vivek", "Rohan");
print_r(array_merge($Student1, $Student2));
?>

A. None of these
Answer» D.


Discussion

No Comment Found

Related MCQs