Which feature of perl provides code reusability?



Which feature of perl provides code reusability?..

Answer / Pradeep Kumar Sonkar

Perl provides code reusability through Modules, which are packages containing related subroutines that perform specific tasks. These modules can be written by the user or downloaded from CPAN (Comprehensive Perl Archive Network).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More CGI Perl Interview Questions

How to remove a directory in perl?

1 Answers  


In Perl, there are some arguments that are used frequently. What are that arguments and what do they mean?

1 Answers  


How to make the following assignment, as arrayreference assignment ? my $arr_ref='[1,2,3,4,4,'elem']';

2 Answers  


What rules must be followed by modules in perl.

1 Answers  


Packing and Unpacking. Hi, I want to get output as 0x23400000345.... in the below example How to get? i tried out, but unable to get the answer $r=0x234; $t=0x345; $y=pack('L L',$t,$r); $x1=unpack('L!',pack('P',$y)); printf("\nThe value is $x1"); I didn't get constant output

1 Answers  


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 ?

1 Answers  


How we can navigate the xml documents?

1 Answers  


How would you trap error occurred in the perl program/file?

3 Answers   IBM,


How will you create a file in perl?

1 Answers  


Explain about typeglobs?

1 Answers  


Explain the different types of data perl can handle.

1 Answers  


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

1 Answers   HCL,


Categories