Explain lists ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of –w?
Why does Perl not have overloaded functions?
What are the benefits of perl in using it as a web-based application?
In CPAN module, name an instance you use.
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?
Explain lexical variables.
How to get help for perl?
What is v-strings?
Explain goto expr?
Explain string comparison operators in perl.
You want to empty an array. How would you do that?
What are the different instances used in cgi overhead?