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

Why do you program in Perl?

Answer Posted / rajganesh

Perl is a general purpose, high level, interpreter, dynamic
and open souce programming language. It's a powerful text
processing software and also used in system administration,
web developement, network programming language etc. We can
use it in both linux/unix and Windows environment also.

Hope this should be enough to the reason for programming in
PERL.

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which statement has an initialization, condition check and increment expressions in its body? Write a syntax to use that statement.

1076


What are the different ways to run cgi?

1013


Write the program to process a list of numbers.

1052


What do you mean by context of a subroutine?

1028


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,

2733


Explain grooving and shortening of arrays and splicing of arrays?

951


What is use of ‘->’ symbol?

1058


Can you add two arrays together?

987


What does redo statement do in perl?

1095


Does Perl have objects? If yes, then does it force you to use objects? If no, then why?

1027


How to read multi lines from a file in perl?

976


What is an interpolation in perl?

1045


How will you open a file in a write-only mode in perl?

991


Explain the difference between "my" and "local" variable scope declarations. ?

1143


How do I sort a hash by the hash key?

967