Answer Posted / jayakumar.b
Perl Installation on Linux/Unix:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% perl Makefile.PL
% make // nmake for Windows.
% make test
% make install
% make clean
Perl Installation on Windows:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
% perl -MCPAN -e shell
% install <Module Name> Eg: install Net::FTP
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How to find the length of an array in perl?
How will you get the count of parameters passed to a perl subroutine?
How to merge two arrays in perl?
What is boolean context?
Write the program to process a list of numbers.
There are some duplicate entries in an array and you want to remove them. How would you do that?
Explain the meaning of closure in perl.
What is the peculiarity of returning values by subroutines in perl?
Which feature of perl provides code reusability?
Explain USE and REQUIREMENT statements?
How do find the length of an array?
How would you ensure the re-use and maximum readability of your perl code?
what is the difference between java and cgi?
What is chomp() operator/function?
Which functions in Perl allows you to include a module file or a module and what is the difference between them?