InterviewSolution
Saved Bookmarks
| 1. |
What is the shebang line?(a) #!(b) !#(c) #$(d) $#This question was posed to me in exam.This interesting question is from System Variables in division System, Status and User Variables of MySQL |
|
Answer» CORRECT OPTION is (a) #! The best explanation: The Perl scripts are text files, which can be ceated USING any text editor. All Perl scripts generally begin with a #! (shebang) line. A script is a file containing a SEQUENCE of commands. |
|