Google News
logo
MySQL - Quiz(MCQ)
The line that is written at the top of the script to write a Perl script using CGI.pm is ______
A)
use CGI
B)
put CGI
C)
include CGI
D)
use this CGI

Correct Answer :   use CGI


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.

Advertisement