HTML
Question 1 |
The diagram that helps in understanding and representing user requirements for a software project using UML (Unified Modeling Language) is:
Entity Relationship Diagram | |
Deployment Diagram | |
Data Flow Diagram | |
Use Case Diagram |
Question 2 |
Consider the three commands : PROMPT, HEAD and RCPT.
Which of the following options indicate a correct association of these commands with protocols where these are used?
HTTP, SMTP, FTP | |
FTP, HTTP, SMTP | |
HTTP, FTP, SMTP | |
SMTP, HTTP, FTP |
Question 3 |
Given below are HTML lines,
With reference to the HTML lines given above, consider the following statements.
(i) Clicking on the point <80, 75> does not have any effect.
(ii) The web browser can identify the area applicable to the mouse-click within the image and the subsequent action to be taken without additional responses from the web server.
(iii) The dots in the cgi-bin URL will be resolved by the web browser before it is sent to the web server.
(iv) The "fd.html" request when sent to the web server will result in a GET request.
Exactly how many of the statements given above are correct?
0 | |
1 | |
2 | |
3 |
Question 4 |
<a.href: “http://www.yourname.com/”, href: “...var.html”> | |
<base href: “http://www.yourname.com/”> | |
<a.href: “http://www.yourname.com/”> | |
<base href: “http://www.yourname.com/”, range: “...var.html”> |
Question 5 |
Consider the HTML table definition given below:
The number of rows in each column and the number of columns in each row are:
〈2, 2, 3〉 and 〈2, 3, 2〉 | |
〈2, 2, 3〉 and 〈2, 2, 3〉 | |
〈2, 3, 2〉 and 〈2, 3, 2〉 | |
〈2, 3, 2〉 and 〈2, 2, 3〉 |
Question 6 |
HTML (Hyper Text Markup Language) has language elements which permit certain actions other than describing the structure of the web document. Which one of the following actions is NOT supported by pure HTML (without any server or client side scripting) pages?
Embed web objects from different sites into the same page | |
Refresh the page automatically after a specified interval | |
Automatically redirect to another page upon download | |
Display the client time as part of the page |
Question 7 |
A graphical HTML browser resident at a network client machine Q accesses a static HTML webpage from a HTTP server S. The static HTML page has exactly one static embedded image which is also at S. Assuming no caching, which one of the following is correct about the HTML webpage loading (including the embedded image)?
Q needs to send at least 2 HTTP requests to S, each necessarily in a separate TCP connection to server S | |
Q needs to send at least 2 HTTP requests to S, but a single TCP connection to server S is sufficient | |
A single HTTP request from Q to S is sufficient, and a single TCP connection between Q and S is necessary for this | |
A single HTTP request from Q to S is sufficient, and this is possible without any TCP connection between Q and S |
Whenever a browser opens a webpage, a separate HTML request must be sent for each image or component in HTML like css file or javascript. But all can be done in the same TCP connection.
Question 8 |
defining a path between two nodes in an image | |
defining clickable region in an image
| |
highlighting an area in an image | |
defining the site-map of a web-site |
Question 9 |
UTF-16 | |
UTF-32 | |
UTF-8 | |
ISO-8859-1 |
This has not always been the case. The character encoding for the early web was ASCII.
Question 10 |
Header | |
Sidebar | |
Article | |
Footer |
Question 11 |
Internal | |
Inline | |
Outline | |
External |
Inline - by using the style attribute inside HTML elements
Internal - by using a < style > element in the < head > section
External - by using a < link > element to link to an external CSS file
The most common way to add CSS, is to keep the styles in external CSS files.
Question 12 |
HTML is not screen precise formatting language. | |
HTML does not specify a logic. | |
DHTML is used for developing highly interactive web pages. | |
HTML is a programming language. |
Question 13 |
What are tags used for?
To replace paragraph i.e., p tags
| |
To logically divide the paragraphs | |
To logically divide the document
| |
To provide space between tables
|
