The content of a static web page is generated each time it is accessed and it is server-side processing that handles the generation. True or false?
True
False
A Java Servlet is a small bit of Java code that is downloaded from a web server host for processing on the client side. They operate on any browser platform that supports a Java Virtual Machine and can do most things that a Java program can do, including access and connection to remote databases. True or false?
True
False
One of the ways that remote databases can be accessed is through client-side scripting. True or false?
True
False
The web server layer is responsible for receiving client requests via the HTTP protocol, for initiating appropriate action for each request, and for passing the end results back to the client. True or false?
True
False
A problem with the CGI approach is that each and every client request results in a new process being created.. True or false?
True
False
Whereas the browser client layer is responsible for displaying data as well as forms for user input, the database connection layer compiles the data to be displayed and processes user input as required. True or false?
True
False
Open Database Connectivity stand was pioneered by Microsoft and is used to connect to Microsoft databases such as Access. True or false?
True
False
ASP.NET comes with a three types of server controls, i.e. tags which are processed by the server which make web development easier. Which one of those listed below is not a server control:
HTML Server Controls – these closely resemble their corresponding HTML tags
Web Server Controls– Eg Label, Textbox, Button, Listbox, Datagrid
Validation Server Controls - used to validate user inputs from a web page
ActiveX Data Object – a programming interface for accessing a database
Read the sentences below about XML. Which one is incorrect?
To process an XML document a program called an XML parser is required. This is built into a browser. It checks the XML semanatics.
If an XML parser successfully processes an XML document, the document is said to be well-formed. A well-formed document conforms to all of XML's syntax rules. For example, if a start-tag appears without its corresponding end-tag, it is not well-formed.
An XML document can have an optional Document Type Definition which determines the document structure. It can be specified as part of the document itself or as a separate file
An XML document that conforms to its DTD is said to be ________, i.e. it conforms to some semantic rules. The missing word is one of the following: