what is the difference between require and use in perl?
Answer Posted / rani
use:
1-its compile time concept & refresh the namespace for
different package loading.
Require:
it is run time concept & does not refresh the namespace for
different package loading.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How will you access an element of a perl array?
What is warn function in perl?
Enlist the advantages of using c over perl?
How to change a directory in perl?
How to copy a file in perl?
What are prefix dereferencer?
what is the difference between java and cgi?
“Perl regular expressions match the longest string possible”. What is the name of this match?
What does a die() function do in perl?
What are the various perl data types based on the context?
What are the purpose of close(), getc() and read() functions?
When would `local $_' in a function ruin your day?
What are the different string manipulation operators in perl?
Write a program to concatenate the $firststring and $secondstring and result of these strings should be separated by a single space.
What can be done for efficient parameter passing in perl? Explain.