1.
How are arrays emptied in Perl?
2.
In Perl, which of the following stores associative arrays that use a key value as an index instead of numerical indexes?
3.
In Perl, which of the following statements about the chomp function is correct?
4.
In Perl, what will the @b array consist of?
my@ a = (10, 5, 1);

my@ b = sort@ a;
5.
In Perl, Lvalue is ________________________________________.
6.
In Perl, what is ->?
7.
In Perl, what is the difference between die and exit?
8.
In Perl, which of the following retrieves the next key and value pair from a hash?
9.
In Perl, hash slices are implemented by ____________________________________.
10.
In Perl, what does -T refer to?