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

Explain the various characteristics of perl.

942

What are scalars in perl?

946

Explain string comparison operators in perl.

1000

Comment on data types and variables in perl.

913

How do you set environment variables in perl?

1031

What are the various advantages and disadvantages of perl?

895

What is subroutine in perl?

937

Demonstrate subroutines in perl with a simple example.

848

What are the various file operations in perl. Explain with example.

933

What is chomp() operator/function?

1043

What are numeric operators in perl?

945

Explain what is perl language?

914

Explain arrays in perl.

929

What are the various flags/arguments that can be used while executing a perl program?

878

What are the different string manipulation operators in perl?

906


Post New CGI Perl Questions

Un-Answered Questions { CGI Perl }

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

956


what is the function of Return Value?

1056


Explain what is lvalue?

1008


What is a perl references?

912


What are some of the key features of objects in perl?

936


What is epoch time in perl?

930


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

873


What are the various flags/arguments that can be used while executing a perl program?

878


what is the main function of fork() in cgi programming?

1118


what is Perl one liner?

892


Explain the default scope of variables in perl?

932


What are the benefits of perl in using it as a web-based application?

893


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,

2670


What does -> symbol indicates in Perl?

969


How interpreter is used in perl?

934