Explain lists ?
Explain what is the scalar data and scalar variables in Perl?
Which guidelines by Perl modules must be followed?
How to concatenate strings with perl?
What does the command "use strict" do and why should you use it?
How to create a package?
Write the program to process a list of numbers.
How can arrays be tied?
How to get help for perl?
What are the functions that can be performed using cgi program?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?
Explain returning values from subroutines?
what is Perl one liner?