what is the procedure to define a user define module in your
perl application?
Answer Posted / subina
Package Module_name;
require Exporter;
@ISA = qw(list of base classes);
@Export = qw(list of symbols );
#------------code---------------------
#at the end of module
1;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the reasons that cookie server can’t handle multiple connections?
How the interpreter is used in Perl?
How will you declare a variable in perl?
What is subroutine in perl?
What is grep used for in perl?
What is the use of "stderr()"?
Explain what is the scalar data and scalar variables in Perl?
Differences between die and exit.
When does circular reference occur?
Explain substr function in perl?
How to prevent file truncation in perl?
Explain grooving and shortening of arrays?
How do you turn on the perl warnings?
What's the difference between /^Foo/s and /^Foo/?
How do I replace every TAB character in a file with a comma?