Differentiate between use and require, my and local, for and foreach and exec and system
write a script to display mirror image of a entered value and also check whether Palindrome
How to renaming a file in perl programming?
Which feature of Perl provides code reusability ? Give any example of that feature.
Explain perl. When do you use perl for programming? What are the advantages of programming in perl?
What happens in dereferencing?
Explain the difference between die and exit in perl?
What is chomp() operator/function?
What are the reasons that cookie server can’t handle multiple connections?
what is the difference between java and cgi?
What are the two ways to get private values inside a subroutine?
What are different data types that perl supports. Elaborate on them.
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?