Explain the default scope of variables in perl?
No Answer is Posted For this Question
Be the First to Post Answer
how to search a unique pattern in a file by using perl hash map function ??? plz answer me
Comment on data types and variables in perl.
How to compare two strings in perl?
What does redo statement do in perl?
Explain the functioning of conditional structures in perl.
Can you add two arrays together?
Mention how many ways you can express string in Perl?
Explain chop?
what are prefix dereferencer and list them out?
What are the different ways to run cgi?
what is the function of Return Value?
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?