Explain the use of 'my' keyword in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What are the steps involved when the cgi program starts running?
Explain perl. When do you use perl for programming? What are the advantages of programming in perl?
What does the q{ } operator do?
Explain what is lvalue?
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 syntax is used for grep() function?
Mention the difference between die and exit in Perl?
What is the difference between use and require in perl?
What are perl array functions?
How to deleting an existing file in perl programming?
What is the use of strict?
How will you get the count of parameters passed to a perl subroutine?