1.

What will be the output of the following PHP code?
<?php
$num = array ("2","3","4", "5", "6", "7", "8", "9", "10");
$face = array ("A", "J", "Q", "K");
$cards = array_merge ($face, $num);
print_r ($cards);
?>

A. None of these
Answer» C.


Discussion

No Comment Found

Related MCQs