How to start perl in interactive mode?
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 is boolean context?
How to read multi lines from a file in perl?
What is a chomp() function in perl?
Write a script for 'count the no.of digits using regular expressions in perl..
How to prevent file truncation in perl?
Explain perl. What are the advantages of programming in perl?
How to dereference a reference?
What are the reasons that cookie server can’t handle multiple connections?
Write a program to decode the data in the form using cgi programming
What $! In perl?
Differentiate use and require?