Question:<?php $stack = array("orange", "banana", "apple", "raspberry"); $fruit = array_pop($stack); print_r($stack); ?> What will be the output? 

A [0] => orange    [1] => banana    [2] => apple 

B [0] => orange    [1] => banana    [2] => raspberry 

C [0] => raspberry [1] => banana    [2] => apple 

+ Answer
+ Report
Total Preview: 918

Copyright © 2024. Powered by Intellect Software Ltd