InterviewSolution
Saved Bookmarks
| 1. |
The line that is written at the top of the script to write a Perl script using CGI.pm is ___________(a) use this CGI(b) put CGI(c) use CGI(d) include CGIThis question was addressed to me by my college professor while I was bunking the class.My doubt stems from System Variables in division System, Status and User Variables of MySQL |
|
Answer» CORRECT choice is (c) use CGI The explanation: In order to WRITE a Perl script that uses the ‘CGI.pm’ MODULE, a ‘use CGI’ statement is included NEAR the BEGINNING of the script that imports the function names of the module. |
|