Name an instance where you used a CPAN module?
Answer Posted / 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 |
Post New Answer View All Answers
How can you use Perl warnings and what is the importance to use them?
How to concatenate strings with perl?
Define perl scripting?
What is perl push array function?
List the prefix dereferencer in Perl.
What is the use of -n and -p options?
how to extract pin_code,phone_number,year from text file using regular expressions in perl
Suppose an array contains @arraycontent=(‘ab’, ‘cd’, ‘ef’, ‘gh’). How to print all the contents of the given array?
What is hash?
Explain goto label?
Why we use CGI?
Who created perl?
What does read () command do?
What is the difference between use and require in perl?
Which statement has an initialization, condition check and increment expressions in its body? Write a syntax to use that statement.