How to close a file in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Does Perl have reference type?
Explain cpan?
How to read a single line from a file 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 can be done for efficient parameter passing in perl? Explain.
When does circular reference occur?
What is cpan ? What are the modules coming under this?
Explain join function in perl?
Explain strftime() function in perl?
what are the steps involved in reading a cgi script on the server?
what is the procedure to define a user define module in your perl application?
what is Chop & Chomp function does?