How do I send e-mail from a Perl/CGI program on a Unix system?
No Answer is Posted For this Question
Be the First to Post Answer
Explain a tell function in perl?
Explain the meaning of closure in perl.
Which has the highest precedence, List or Terms? Explain?
What can be done for efficient parameter passing in perl?
How can we create perl programs in unix, windows nt, macintosh and os/2 ?
What is the use of –w?
What arguments do you frequently use for the Perl interpreter and what do they mean?
What is the importance of perl warnings?
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 different types of perl operators.
What are the advantages of c over Perl?
What is the difference between having a parenthesis after module name and without parenthsis after module name?? i.e Package::Module(); and Package::Module;