What can be done for efficient parameter passing in perl? Explain.
No Answer is Posted For this Question
Be the First to Post Answer
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 interpreter is used in perl?
What is the difference between module and package?
What is perl? What is the basic command to print a string in perl?
Explain perl.
Define perl scripting?
Demonstrate subroutines in perl with a simple example.
How to close a file in perl?
What are stdin, stdout and stderr?
Which feature of Perl provides code reusability ? Give any example of that feature.
How to read from a pipeline with Perl
Which functions in perl allows you to include a module file. State their differences.