Which has the highest precedence, List or Terms? Explain?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use "use strict" in perl?
Explain split function in perl?
How to remove a directory in perl?
How to do comment in perl?
what is the function of Return Value?
Explain gmtime() function in perl?
What is the difference between having a parenthesis after module name and without parenthsis after module name?? i.e Package::Module(); and Package::Module;
Define dynamic scoping.
What does this symbol mean '->'?
How to determine strings length in perl?
What do the symbols $ @ and % mean when prefixing a variable?
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?