How can you define “my” variables scope in Perl and how it is different from “local” variable scope?
No Answer is Posted For this Question
Be the First to Post Answer
What is perl dbi?
What package you use to create a windows services?
what is the difference between require and use 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 the meaning of subroutine?
How to read multi lines from a file in perl?
What are the various flags/arguments that can be used while executing a perl program?
What $! In perl?
Define say() function in perl?
What is the use of '>>' in perl?
“Perl regular expressions match the longest string possible”. What is the name of this match?