What are the logical operators used for small scale operations?
What is eval function in perl?
Explain goto expr?
How to prevent file truncation in perl?
write a perl script to find whether a given line of text is starting and ending with same word or not ???
What is the difference between perl array and perl hash?
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?
Define operators used in perl?
What is confess function in perl?
In Perl, what is grep function used for?
What are the various file operations in perl. Explain with example.
What is the different between array and hash in perl programming?
Differentiate between arrays and list in perl.