Google News
logo
Perl - Quiz(MCQ)
Parameters of a function can be acessed inside the function using the special array @_?
A)
True
B)
False
C)
--
D)
--

Correct Answer :   True


Explanation : Parameters can be acessed inside the function using the special array @_. Thus the first argument to the function is in $_[0], the second is in $_[1], and so on.

Advertisement