What $! In perl?
What are scalars?
How will you create a file in perl?
Is perl compiler or interpreter?
what is the difference between java and cgi?
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?
List the prefix dereferencer in Perl.
Can inheritance be used in perl? Explain with the help of an example.
Who created perl?
How can you use Perl warnings and what is the importance to use them?
What is the difference between localtime() and gmtime() functions?
Define operators used in perl?
When do you use perl programming?