What is the use of command “use strict”?
Explain about typeglobs?
List the prefix dereferencer in Perl.
What are prefix dereferencer? List them.
What is the peculiarity of returning values by subroutines in perl?
How can you create anonymous subroutines?
How would you replace a char in string and how do you store the number of replacements?
How to count no of occurrence of a unique patterns in perl?
Comment on data types and variables in perl.
How to access parameters passed to a subroutine in perl?
Explain the difference between my and local?
What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability?
What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?