Name an instance where you used a CPAN module?

Answers were Sorted based on User's Feedback



Name an instance where you used a CPAN module?..

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

Name an instance where you used a CPAN module?..

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

Name an instance where you used a CPAN module?..

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

Post New Answer

More CGI Perl Interview Questions

What is stdin in perl?

0 Answers  


What are the logical operators used for small scale operations?

0 Answers  


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

0 Answers  


Which feature of Perl provides code reusability ? Give any example of that feature.

1 Answers  


write a script to check whether user enter a value is a leap year or not?

3 Answers   Oracle, Persistent, ViPrak,






How to copy a file in perl?

0 Answers  


What is eval function in perl?

0 Answers  


How do I pass a command line argument in perl?

0 Answers  


I have created a CGI-based page,after entering all the values in to the fields, How to get the output on the web browser using Perl

4 Answers  


What is the purpose of goto expr statement?

0 Answers  


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?

1 Answers   A1 Technology,


Explain perl. When do you use perl for programming? What are the advantages of programming in perl?

0 Answers  


Categories