How to dereference a reference?
Explain perl.
What is q (single q) operator 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?
What does undef function in perl?
What are the arguements we normally use for perl interpreter?
Why do you use only Perl when there a lot of more languages available in market like C, Java?
What is perl dbi?
Explain lexical variables.
what is the procedure to define a user define module in your perl application?
How to disable the mod_perl from apache_server as i have used perlfect search on the site and its pagination is not working and the remedy is to disable the mod_perl.
Elaborate on perl bite-wise operators.
How will you create a file in perl?