Name an instance where you used a CPAN module?
Answers were Sorted based on User's Feedback
Answer / prabhath kota
You might have asked the question in reverse.For daily needs
and for normal development purposes in Perl, we need to use
many modules.
We will get the modules from a common repository called
"Cpan", in which programmers from all over the world keep
the modules. Anyone can use them.
Eg.,
Data::Dumper
CGI
HTML::Template
CGI::Carp qw(fatalsToBrowser);
CGI::Ajax ...
...........
..........
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / raghav
There are no.of instances for this
For eg; we use DBI module for database connectivity,
and we also use CGI Module for parsing the form input and
printing the headers.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kiran
we will get a no.of modules from CPAN ,
there so many module for database interface,
database drivers.
to do the mathematical operations ,text processing .
each module is to handle a small tasks .
| Is This Answer Correct ? | 2 Yes | 1 No |
what is the function of Return Value?
How to copy a file in perl?
Explain the functioning of conditional structures in perl.
What does localtime() do in perl?
Explain '->' in perl?
how to create a flat file database as shown below s.no name age city phone 0 hema 22 Calcutta 4312542 1 hema 21 Bangalore 2344345 2 ganesh 25 delhi 2445454 3 kartik 45 pune 4312121 4 santosh 25 Hyderabad 2254231 5 kumar 25 mysore 2344567 6 gita 34 mangalore 6532123 7 gita 32 pune 2213456 Q1.print the details of the person who r from bangalore q2.Replace the city name managlore to pune q3.prints no of person having name gita and hema q4.print how many are of age 25.
What is the use of -w, -t and strict in Perl?
Comment on data types and variables in perl.
When does circular reference occur?
What is perl push array function?
Explain which feature of PERL provides code reusability?
What does 'do' statement do in perl?