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 the different between array and hash in perl programming?
Why aren't Perl's patterns regular expressions?
Explain goto label?
What are the different ways to run cgi?
How to change a directory in perl?
Explain the default scope of variables in perl?
What is the difference between perl array and perl hash?
List the data types that Perl can handle?
How can I display all array element in which each element will display on next line in perl ?
What are the options that can be used to avoid logic errors in perl?
Write syntax to add two arrays together in perl?
How we can navigate the xml documents?
Differentiate between arrays and list in perl.
Explain a tell function in perl?
What is lexical variable in perl?