What syntax is used for grep() function?
No Answer is Posted For this Question
Be the First to Post Answer
Which feature of perl provides code reusability?
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?
Explain splicing of arrays?
How does a “grep” function perform?
What does -> symbol indicates in Perl?
What does last statement do in perl?
How can information be put into hashes?
Explain a tell function in perl?
What is qq (double q)operator in perl?
What are scalars?
explain the various functions/directives in perl that allow you to include/import a module. Also, state the differences between them.
What does init 5 and init 0 do?