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

how to connect cisco switch uisng perl script

ABC,

3847

Assuming both a local($var) and a my($var) exist, what's the difference between ${var} and ${"var"}?

983

If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?

1008

Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical?

926

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

1199

What does `new $cur->{LINK}' do? (Assume the current package has no new() function of its own.)

941

What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?

989

What's the difference between /^Foo/s and /^Foo/?

1184

When would `local $_' in a function ruin your day?

952

Why aren't Perl's patterns regular expressions?

1168

Why is it hard to call this function: sub y { "because" } ?

962

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

988

Which of these is a difference between Perl and C++ ?

1046

How do I sort a hash by the hash value?

929

How do I sort a hash by the hash key?

920


Post New CGI Perl Questions

Un-Answered Questions { CGI Perl }

how to extract pin_code,phone_number,year from text file using regular expressions in perl

2236


What is the usage of -i and 0s options?

987


How to print escaping characters inside a string in perl?

899


Explain the various characteristics of perl.

955


Write a program to decode the data in the form using cgi programming

1044


What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?

989


What is the difference between perl array and perl hash?

1084


How does a “grep” function perform?

1030


How to convert arrays into a string in perl?

947


what is Polymorphism in Perl?

968


Differences between die and exit.

998


What is subroutine in perl?

948


What's the difference between /^Foo/s and /^Foo/?

1184


What is perl scripting?

941


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,

2682