How do you find the length of an array?
No Answer is Posted For this Question
Be the First to Post Answer
How to start perl in interactive mode?
How many loop control keywords are there in perl?
Differentiate between arrays and list in perl.
what is the function that is used to identify how many characters are there in a string?
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
What are the different ways to run cgi?
How to close a file in perl?
what is Perl one liner?
explain the various functions/directives in perl that allow you to include/import a module. Also, state the differences between them.
Explain join function in perl?
What is the importance of perl warnings? How do you turn them on?
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?