The line which 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 CGI
Answer: Option C
Solution (By Examveda Team)
This question is about how to use a special library called CGI.pm in your Perl scripts to create web pages. CGI.pm is a toolkit that helps you make dynamic web pages, which means the content can change based on user input.To tell your Perl script to use CGI.pm, you need to put a special line at the very beginning. This line tells the script to "load" the library and make its tools available.
The correct line to do this is "use CGI".
So the answer is Option C: use CGI
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network

Join The Discussion