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 is 'commit' command in perl?
Distinguish my and local?
What are prefix dereferencer?
What is the tk module?
What is the importance of perl warnings?
What does this symbol mean '->'?
What are perl array functions?
Demonstrate subroutines in perl with a simple example.
How many loop control keywords are there in perl?
In Perl we can show the warnings using some options in order to reduce or avoid the errors. What are that options?
Explain the arguments for perl interpreter.
What is the easiest way to download the contents of a URL with Perl?
If EXPR is an arbitrary expression, what is the difference between $Foo::{EXPR} and *{"Foo::".EXPR}?
How are parameters passed to subroutines in perl?
How can you replace the characters from a string and save the number of replacements?