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 |
Explain the difference between die and exit in perl?
What is perl shift array function?
Who created perl?
How to convert arrays into a string in perl?
How the interpreter is used in Perl?
Explain what is perl language?
What is v-strings?
Why aren't Perl's patterns regular expressions?
What can be done for efficient parameter passing in perl?
What is perl push array function?
What is the difference between $array[1] and @array[1]?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?