Why aren't Perl's patterns regular expressions?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that shows the distinction between child and parent process?
what are the two ways to get private values inside a subroutine or block?
Suppose an array contains @arraycontent=(‘ab’, ‘cd’, ‘ef’, ‘gh’). How to print all the contents of the given array?
What is the purpose of _package_ literal?
Explain the difference between "my" and "local" variable scope declarations. ?
explain the various functions/directives in perl that allow you to include/import a module. Also, state the differences between them.
Write an example explaining the use of symbol tables.
Why to use perl scripting?
How does a “grep” function perform?
write a script to check whether user enter a value is a leap year or not?
3 Answers Oracle, Persistent, ViPrak,
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?
Is perl a case sensitive language?