Quiz 10 -- CS 290W -- Apr 8, 99

(1) Which of the following is equivalent to
if ($iReb <= 100)?
(1) unless ($iReb > 100)
(2) if ($iReb < 100)
(3) if ($iReb >= 100)
(4) unless ($iReb <= 100)
(1)

(2) Suppose an array is (78, 35, 54, 43). Which operator will return (35, 43, 54, 78)?
(1) reverse
(2) sort
(3) foreach
(4) unless
(2)

(3)
@acGlue = ('p', 'm', 'j', 'd');
$iBlug = @acGlue;
What is now in $iBlug?
(1) 'd'
(2) 3
(3) 4
(4) ('p', 'm', 'j', 'd')
(3)