InterviewSolution
Saved Bookmarks
| 1. |
What is the default path to Perl in Unix?(a) /usr/bin/perl(b) /usr/bin(c) /usr/perl(d) /usr/perl/bin |
|
Answer» Correct answer is (a) /usr/bin/perl For explanation: All Perl scripts generally begin with a #! (shebang) line. A script is a file containing a sequence of commands. The Perl scripts are text files, which can be created using any text editor. |
|