MySQL Connectors and APIs
- The MySQL APIs are libraries to connect applications to database servers.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The MySQL Connectors and APIs are some drivers and libraries. They are used to connect the applications in different programming languages to the database servers of MySQL.
- Which of these is the most general purpose language?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
C is a general purpose language, so in principle it can be used for anything. C tends to be used more often for standalone programs rather than for Web programming in practice.
- Among the following, for which language is image processing least simple?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
It is not as easy to perform text processing and memory management in C than it is in languages like Perl and PHP. These capabilities tend to be heavily used in the web applications.
- The CGI.pm module for website development is a part of _____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
Like C, Perl is also suitable for writing standalone programs. However, Perl is quite useful for Web site development. The CGI.pm module of Perl can be extensively used for it.
- Compiled programs execute faster than interpreted scripts.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
For interpreted languages used in web development, the performance is better when the interpreter is invoked as a module which is a part of the Web server itself. Compiler is faster generally.