Unsolved Questions:: Brief Summary of The Chapter
Unsolved Questions:: Brief Summary of The Chapter
com
15. What is the JDBC-ODBC Bridge?
Ans: The JDBC-ODBC Bridge is a JDBC driver which implements JDBC operations by
translating them into ODBC operations. To ODBC it appears as a normal application
program. The Bridge implements JDBC for any database for which as ODBC driver is
available. The Bridge is implemented as the sun.jdbc.odbc Java package and contains a
native library used to access ODBC.
16. Explain the purpose of DriverManager.
Ans:The DriverManager looks after the managing the drivers for a JDBC application.
When it is instantiated it makes an attempt to load the driver classes. When the method
getConnection( ) is invoked, the driver manager attempts to locate the suitable driver.
The DriverManager obtains the information about the drivers such as registering,
locating, finding the drivers loaded, setting the time to wait when it tries to get the
connection to a database.
17. Name the methods which are useful for executing SQL statements.
Ans: There are two methods which are responsible for executing SQL statements. These
are:
• executeQuery( )- For SQL statements that produce a single result set (like simple
SQL query).
m
• executeUpdate( )- For executing INSERT,UPDATE OR DELETE statements and
also SQL DDL(Data Definition Language) statements.
co
Unsolved Questions:
1. Differentiate between JDBC and ODBC ? y.
da
2. What are the main tasks of JDBC ?
to
CHAPTER 10
tu
World Wide Web is an example of an information protocol/service that can be used to send
w
The World Wide Web is an example of an information protocol/service that works using a
Client/Server software design. A service that uses Client/Server design requires two pieces of software
to work: Client software (e.g. Web Browser) to request information, and Server software(Web server)
to answer requests and provide their information. Most Web applications are designed this way.
Solved Questions:
1. Identify the web browser software from the following options:
(a) Apache Web Server (b) MS Word (c) HTML (d) Mozilla Firefox
m
(a) active (b) static (c) dynamic (d) none of the above
co
Ans. (c) Dynamic
y.
3. A___________ document is a fixed content document that is created by web server whenever a
browser requests the documents.
da
(a) active (b) static (c) dynamic (d) none of the above
to
Unsolved Questions:
1. In the URL, http://www.mycorp.com/pr/master.htm, what is the http component?
2. In the URL, http://www.mycorp.com/pr/master.htm, what is the www.mycorp.com component?
3. In the URL, http://www.mycorp.com/pr/master.htm, what is the /pr/master.htm component?
4. What do you mean by Web Browser, and Web Server?
5. Which protocol is used to upload/ transfer the file from host to server Internet?
6. What is WWW? How does it function?
m
7. A web browser & web server are an application of client/server computing concept. Comment on
co
this statement?
8. What is URL ? What are its components?
y.
da
9. What is CGI? How it works in Dynamic web Page service?
10. Differentiate between Static and Dynamic Web Service?
to
es
CHAPTER 11
di
documents over the internet. These documents are stored on web-servers on the internet and contain
w
text, images, videos and other multimedia. These documents also contain hyperlinks to navigate
w
among them. HTML (Hyper Text Markup Language) is the basic language which is used to create
Hypertext documents. In this lesson we are going to learn how to create hyper text documents using
HTML.