How will you get the count of parameters passed to a perl subroutine?
No Answer is Posted For this Question
Be the First to Post Answer
Show the use of sockets for the server and client side of a conversation?
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 is use of ‘->’ symbol?
What does 'do' statement do in perl?
What are prefix dereferencer? List them.
What do the symbols $ @ and % mean when prefixing a variable?
What are arrays in perl?
How does a “grep” function perform?
Differentiate between use and require, my and local, for and foreach and exec and system
What is the peculiarity of returning values by subroutines in perl?
How to read from a pipeline with Perl
What does the qq{ } operator do?