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 are the various file operations in perl. Explain with example.

0 Answers  


What is the difference between perl array and perl hash?

0 Answers  


How can information be put into hashes?

0 Answers  


What are the steps involved when the cgi program starts running?

0 Answers  


How can arrays be tied?

0 Answers  






You want to open and read data files with perl. How would you do that?

0 Answers  


Hi, I am a accountant. I am preparing a balance sheet but because of staff shortage and time pressures I cant complete it on time. There is lot of common data with last years which I need not retype and I can manage by editing last year’s balance sheet ? Is their any software on net where I can do this easily??

0 Answers  


What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability?

1 Answers  


what is the function that is used to identify how many characters are there in a string?

0 Answers  


What are scalars?

0 Answers  


Explain ivalue?

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?

2 Answers  


Categories