Which feature of Perl provides code reusability ? Give any example of that feature.
Answer / zahir
inheritance feature of Perl provides code re usability. In inheritance, the child class can use the methods and property of parent class
| Is This Answer Correct ? | 5 Yes | 0 No |
What is confess function in perl?
What is the difference between die and exit in perl?
What does localtime() do in perl?
Why do we use "use strict" in perl?
what are the two ways to get private values inside a subroutine or block?
What is the use of strict?
Explain the difference between use and require?
What is the purpose of goto expr statement?
Explain about the applications of perl?
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
How can you call a subroutine and identify a subroutine?
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 ?