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"}?

986

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

1009

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.)

943

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/?

1185

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++ ?

1050

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 }

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


Explain the meaning of perl one-liner?

1064


What does the qx{ } operator do?

917


What is use of ‘->’ symbol?

1008


How to create a package?

956


How can I implement the function overloading in Perl ? I read about the operator overloading, I do not know how to implement the function overloading. Thanks in advance ?

2906


What is the use of 'ne' operator?

1002


What are the various advantages and disadvantages of perl?

901


Explain join function in perl?

960


How to close a directory in perl?

929


How does polymorphism work in perl?

918


Mention what is cpan?

1017


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

1002


Explain lists ?

937


How are parameters passed to subroutines in perl?

953