How to read file into hash array ?
What is cpan in perl?
Differentiate between arrays and list in perl.
what are the steps involved in reading a cgi script on the server?
How to add elements in a hash in perl?
Give an example of the -i and 0s option usage.
Explain splicing of arrays?
Explain use of ‘my’ keyword in perl?
Explain strftime() function 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?
How to do comment in perl?
In Perl, there are some arguments that are used frequently. What are that arguments and what do they mean?
Explain cpan?