Difference between Perl and Mod_perl?
Answers were Sorted based on User's Feedback
Answer / shah faisal
Perl is a language and MOD_PERL is a module of Apache used
to enhance the performance of the application.
| Is This Answer Correct ? | 16 Yes | 0 No |
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?
Why Perl aliases are considered to be faster than references?
What does last statement do in perl?
Explain which feature of PERL provides code reusability?
There are two types of eval statements i.e. Eval expr and eval block. Explain them.
Explain strftime() function in perl?
Write a program that explains the symbolic table clearly.
Explain chop?
What does init 5 and init 0 do?
What is v-strings?
How does a “grep” function perform?
What are scalar data and scalar variables?