What does delete function do in perl?
No Answer is Posted For this Question
Be the First to Post Answer
“The methods defined in the parent class will always override the methods defined in the base class”. What does this statement means?
What purpose does each of the following serve: -w, strict, - T ?
What is a chomp() function in perl?
Write an expression or perl script to identify the entered ip address is valid or not?
Explain the different types of data perl can handle.
How to do comment in perl?
Why is it hard to call this function: sub y { "because" } ?
Explain USE and REQUIREMENT statements?
Write a program that shows the distinction between child and parent process?
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 does undef function in perl?
Explain the difference between my and local?