1.

What will be the output of the following PHP code?
 <?php $fruits = array ("apple", "mango", "peach", "pear", "orange"); $subset = array_slice ($fruits, 2); print_r ($subset); ?>  

A. Array ( [0] =&gt; peach )
B. Array ( [0] =&gt; apple [1] =&gt; mango [2] =&gt; peach )
C. Array ( [0] =&gt; apple [1] =&gt; mango )
D. Array ( [0] =&gt; peach [1] =&gt; pear [2] =&gt; orange )
Answer» E.


Discussion

No Comment Found