Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between die and exit in perl?
Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical?
Explain the various characteristics of perl.
How many types of operators are used in the Perl?
What does undef function in perl?
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
“Perl regular expressions match the longest string possible”. What is the name of this match?
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?
How to read from a pipeline with Perl
What does a die() function do in perl?
What does 'do' statement do in perl?
How to determine strings length in perl?