What are the arguments and what do they mean in perl programming?


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

Post New Answer

More CGI Perl Interview Questions

How and what are closures implemented in perl?

0 Answers  


How do I generate a list of all .html files in a directory?

0 Answers  


What is “grep” function in perl?

0 Answers  


what is the difference between java and cgi?

0 Answers  


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 can memory be managed in Perl?

0 Answers  


Explain perl one-liner?

0 Answers  


What does a die() function do in perl?

0 Answers  


How to implement a stack in Perl?

0 Answers  


what r the future opportunities in PERL/LINUX after 3 years ??

3 Answers  


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

3 Answers   Oracle, Persistent, ViPrak,


Mention the difference between die and exit in Perl?

0 Answers  


Categories