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
What is perl shift array function?
Why to use perl?
What is a chop() function in perl?
In CPAN module, name an instance you use.
what are the steps involved in reading a cgi script on the server?
What are the various file operations in perl. Explain with example.
“Perl regular expressions match the longest string possible”. What is the name of this match?
What does redo statement do in perl?
Explain USE and REQUIREMENT statements?
How many types of variable in perl?
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical?
What are the steps involved in configuring a server using cgi programming?
Write a program to decode the data in the form using cgi programming
What does the qq{ } operator do?