What is Perl?
No Answer is Posted For this Question
Be the First to Post Answer
Explain cpan?
Comment on the scope of variables in perl.
You want to empty an array. How would you do that?
When does circular reference occur?
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 the main function of fork() in cgi programming?
Write a script to reverse a string without using perl's built in functions?
write a Perl script to find a particular word in a paragraph???
Explain substr function in perl?
Which operator in perl is used for the concatenation of two strings?
sort a word "system" in perl/shell without using built in functions output should be emssty
How interpreter is used in perl?