Explain the difference between "my" and "local" variable scope declarations. ?
How to dereference a reference?
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?
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
Give an example of using the -n and -p option.
How can you replace the characters from a string and save the number of replacements?
Why should I use the -w argument with my Perl programs?
I have created a CGI-based page,after entering all the values in to the fields, How to get the output on the web browser using Perl
Write the program to process a list of numbers.
What is 'commit' command in perl?
What is caller function in perl?
Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?
What are the steps involved in configuring a server using cgi programming?