1.

What will be the output of the following PHP code?
<?php
$num = array ("Zero","One", "Two", "Three", "Four","Five");
$subset = array_slice ($num, 2);
print_r ($subset);
?>

A. None of these
Answer» E.


Discussion

No Comment Found

Related MCQs