Write a script to reverse a string without using perl's built in functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of _package_ literal?
Define dynamic scoping.
What is cpan in perl?
There are two types of eval statements i.e. Eval expr and eval block. Explain them.
Explain arrays in perl.
How to count no of occurrence of a unique patterns in perl?
Explain the difference between use and require?
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 are steps to do to lock the sony ericsson mobile with password?
Explain cpan?
What is the easiest way to download the contents of a URL with Perl?
You want to empty an array. How would you do that?