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
+ AnswerA
+ Report