What can be done for efficient parameter passing in perl?
No Answer is Posted For this Question
Be the First to Post Answer
Explain goto label, goto name, and goto expr?
How to dereference a reference?
What are the purpose of close(), getc() and read() functions?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?
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 connect to SQL server through Perl?
What is the syntax used in Perl grep function?
Explain what is STDIN, STDOUT and STDERR?
How can you call a subroutine and identify a subroutine?
What are the various advantages and disadvantages of perl?
What is the use of –w?
What is the importance of perl warnings?