1.

What will be the output of the following PHP code?
<?php
$City1 = array ("Noida", "Delhi", "Chennai", "Greenville", "Branford");
$City2 = array ("Chennai", "Derby", "Enfield", "Delhi", "Greenville");
$inter = array_intersect ($City1, $City2);
print_r ($inter);
?>

A. None of these
Answer» E.


Discussion

No Comment Found

Related MCQs