Why do you program in Perl?

Answer Posted / mastan

because perl is high level language and it is portable and it is free and it is human oriented sysntax.
because of these we program inperl

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does a “grep” function perform?

672


What does -> symbol indicates in Perl?

638


Explain the default scope of variables in perl?

593


How to concatenate strings in perl?

687


How the interpreter is used in Perl?

612






How does polymorphism work in perl? Give an example.

540


What are the different string manipulation operators in perl?

604


Differentiate between use and require, my and local, for and foreach and exec and system

561


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,

2360


How to read multi lines from a file in perl?

585


How interpreter is used in perl?

574


How do you set environment variables in perl?

625


Explain the various characteristics of perl.

618


Why aren't Perl's patterns regular expressions?

669


what is Polymorphism in Perl?

623