Why do you use Perl?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More CGI Perl Interview Questions

How the interpreter is used in Perl?

0 Answers  


What is subroutine in perl?

0 Answers  


What does read () command do?

0 Answers  


Which functions in Perl allows you to include a module file or a module and what is the difference between them?

0 Answers  


What is chomp() operator/function?

0 Answers  






What does `$result = f() .. g()' really return?

0 Answers  


What is the easiest way to download the contents of a URL with Perl?

0 Answers  


How would you replace a char in string and how do you store the number of replacements?

2 Answers  


How to check the status of airplane mode (enable/disable) in perl for Android mobile?

0 Answers  


write a script to generate n prime no.s?

2 Answers   Persistent,


package MYCALC; use Exporter; our @EXPORT = (); our @ISA = qw(Exporter); our @EXPORT_OK = qw(addition multi); our %EXPORT_TAGS = (DEFAULT => [qw(&addition)],Both => [qw(&addition & +multi)]); sub addition { return $_[0] + $_[1]; } sub multi { return $_[0] * $_[1]; } 1; Program: use strict; use warnings; my @list = qw (2 2); use Module qw(:DEFAULT); print addition(@list),"\n"; Above coding is my module MYCALC and the program which using this module, I have not exported any function using @EXPORT, but I have used the DEFAULT in %EXPORT_TAGS with the function addition, when I call this function from the main it says the error as,

0 Answers  


How and what are closures implemented in perl?

0 Answers  


Categories