Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

CGI Perl Interview Questions
Questions Answers Views Company eMail

What does undef function in perl?

953

What is stdin in perl?

973

What are perl variables?

932

What does the q{ } operator do?

909

How to access parameters passed to a subroutine in perl?

958

What are the advantages and disadvantages of perl language?

918

Explain gmtime() function in perl?

981

What is the use of '>>' in perl?

1017

How to merge two arrays in perl?

1066

How to do comment in perl?

960

What does localtime() do in perl?

1011

What are perl strings?

897

What is posix in perl?

948

Explain the default scope of variables in perl?

945

Explain join function in perl?

964


Post New CGI Perl Questions

Un-Answered Questions { CGI Perl }

Explain perl one-liner?

965


What is perl I used for?

963


What does read () command do?

938


How to know whether a key exists or not in perl?

982


what are prefix dereferencer and list them out?

1039


Explain perl.

950


How do I replace every character in a file with a comma?

992


What are the various advantages and disadvantages of perl?

901


How do you match one letter in the current locale?

1021


What is perl programming?

1029


Remove the duplicate data from @array=(“perl”,”php”,”perl”,”asp”)

1006


what are the two ways to get private values inside a subroutine or block?

943


What is boolean context?

1002


How to read a directory in perl?

1039


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,

2683