What is caller function in perl?
What is the difference between exec and system?
What is the difference between having a parenthesis after module name and without parenthsis after module name?? i.e Package::Module(); and Package::Module;
What is the difference between use and require in perl programming?
Explain lists in perl?
Where the command line arguments are stored and if you want to read command-line arguments with Perl, how would you do that?
What are the arguments and what do they mean in perl programming?
How to get help for perl?
What are the various perl data types based on the context?
How to prevent file truncation in perl?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?
Explain cpan?
How do you give functions private variables that retain their values between calls?