Explain what is STDIN, STDOUT and STDERR?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the various characteristics of perl.
What is grep used for in perl?
you are required to replace a char in a string and store the number of replacements. How would you do that?
Create a function that is only available inside the scope where it is defined ?
What can be done for efficient parameter passing in perl? Explain.
For a situation in programming, how can you determine that Perl is a suitable?
Is perl compiler or interpreter?
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 prevent file truncation in perl?
What is perl? What is the basic command to print a string in perl?
Which functions in Perl allows you to include a module file or a module and what is the difference between them?
Explain the execution of a program in perl.