Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What?s your favorite module and why?

Answer Posted / raghav

My Favourite module is CGI.pm Bcoz it can handle almost all
the tasks like
1. parsing the form input
2. printiing the headers
3. can handle cookies and sessions
and much more

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What value is returned by a lone `return;’ statement?

1038


List the operator used in Perl?

958


Explain the difference between die and exit in perl?

858


Explain goto label, goto name, and goto expr?

912


How to turn on Perl warnings? Why is that important?

1047


What are the various perl data types based on the context?

924


Explain what is the scalar data and scalar variables in Perl?

938


Mention how many ways you can express string in Perl?

1001


Who created perl?

907


You want to print the contents of an entire array. How would you do that?

930


How to read a file into a hash array?

1033


package MYCALC; use Exporter; our @EXPORT = (); our @ISA = qw(Exporter); our @EXPORT_OK = qw(addition multi); our %EXPORT_TAGS = (DEFAULT => [qw(&addition)],Both => [qw(&addition & +multi)]); sub addition { return $_[0] + $_[1]; } sub multi { return $_[0] * $_[1]; } 1; Program: use strict; use warnings; my @list = qw (2 2); use Module qw(:DEFAULT); print addition(@list),"\n"; Above coding is my module MYCALC and the program which using this module, I have not exported any function using @EXPORT, but I have used the DEFAULT in %EXPORT_TAGS with the function addition, when I call this function from the main it says the error as,

2661


What are the features of perl language?

1062


What is the use of command “use strict”?

1002


How to get help for perl?

967