The purpose of this quiz is to provide the student with a large number of supplemental exercises for Chapter 9. This quiz can be used to perform a self-evaluation. This quiz consists of twenty five multiple choice questions. Each multiple choice question has four possible answers.
 |
1 |  |  Which of the following is not a standard use of frames? |
|  | A) | For form verification. |
|  | B) | For common content. |
|  | C) | For HTML content containing very few hyperlinks. |
|  | D) | For including a table of contents. |
 |
 |
2 |  |  Which of the following statements is true? |
|  | A) | HTML documents involving frames should contain both the BODY and FRAMESET tag. |
|  | B) | FRAME can be used in place of FRAMESET. |
|  | C) | HTML documents involving frames should contain only the BODY tag. |
|  | D) | HTML documents involving frames should contain the FRAME-SET tag and not the BODY tag. |
 |
 |
3 |  |  Which of the following is legal HTML syntax? |
|  | A) | <FRAMESET COLS= "50%, 50%"> |
|  | B) | <FRAMESET ROW= "50%, 50%"> |
|  | C) | <FRAMESET COLUMNS= "50, 50"> |
|  | D) | <FRAME COLS= "50%, 50%"> |
 |
 |
4 |  |  Which of the following statements is true? |
|  | A) | The NOFRAMES tag is used by people who don't want frames to be displayed. |
|  | B) | The NOFRAMES tag is used to include a message for people whose browser is not capable of displaying frames. |
|  | C) | Microsoft developed frames. |
|  | D) | You can use both the ROWS and COLUMNS attributes of the FRAME tag together. |
 |
 |
5 |  |  Which piece of code could be used to divide the screen into four parts of equal area? |
|  | A) | <FRAMESET COLS= "50%, 50%" ROWS = "40%, 60%"> |
|  | B) | <FRAMESET COLS= "60%, 40%" ROWS = "40%, 60%"> |
|  | C) | <FRAMESET COLS= "1*, 1*, 1*, 1*"> |
|  | D) | <FRAMESET ROWS = "1*, 2*, 2*, 1*"> |
 |
 |
6 |  |  Which of the following best indicates the standard attributes specified when defining a FRAME? |
|  | A) | SRC and NAME |
|  | B) | SRC, NAME, and ROW |
|  | C) | NAME and FRAMESET |
|  | D) | BODY, SRC, and TITLE |
 |
 |
7 |  |  How are frames loaded into the browser window? |
|  | A) | Top-to-bottom, right-to-left |
|  | B) | Top-to-bottom, left-to-right |
|  | C) | Bottom-to-top, left-to-right |
|  | D) | Bottom-to-top, right-to-left |
 |
 |
8 |  |  Which of the following is not an attribute of the FRAME tag? |
|  | A) | SCROLLING |
|  | B) | AUTO |
|  | C) | MARGINWIDTH |
|  | D) | FRAMEBORDER |
 |
 |
9 |  |  Which of the following is valid HTML syntax? |
|  | A) | <A HREF = "d.html" TARGET = "crow" D/A> |
|  | B) | <A TARGET = "d.html" TARGET= "crow">D/A> |
|  | C) | <A HREF = "d.html" TARGET = "crow">D/A> |
|  | D) | <A TARGET = "d.html" TARGET = "crow >D/A> |
 |
 |
10 |  |  Which of the following statements is true? |
|  | A) | _blank when used as a value to the TARGET attribute causes a new unnamed browser window to open. |
|  | B) | _top has the same meaning as _blank. |
|  | C) | _self has the same meaning as _blank. |
|  | D) | _parent has the same meaning as _blank. |
 |
 |
11 |  |  Which of the following is not a valid attribute of the INPUT tag? |
|  | A) | TEXT |
|  | B) | NAME |
|  | C) | SIZE |
|  | D) | MAXLENGTH |
 |
 |
12 |  |  Which of the following is not a valid value for the TYPE attribute of the INPUT tag? |
|  | A) | checkbox |
|  | B) | radiobutton |
|  | C) | submit |
|  | D) | reset |
 |
 |
13 |  |  Which of the following is syntactically correct HTML code? |
|  | A) | <INPUT TYPE= "submit" VALUES = "reset,submit"> |
|  | B) | <INPUT TEXT = "submit" VALUE = "reset"> |
|  | C) | <INPUT TYPE = "submit" VALUE = "reset"> |
|  | D) | <INPUT TYPE = "reset" TEXT = "clear"> |
 |
 |
14 |  |  To provide a default checked box, you can use which attribute of the INPUT tag? |
|  | A) | checkbox |
|  | B) | check |
|  | C) | checked |
|  | D) | mark |
 |
 |
15 |  |  Which of the following is not an attribute of the SELECT tag? |
|  | A) | NAME |
|  | B) | MULTIPLE |
|  | C) | SIZE |
|  | D) | OPTION |
 |
 |
16 |  |  Which of the following pieces of code correctly illustrates how to preselect a specific option? |
|  | A) | <OPTION SELECT> |
|  | B) | <OPTION MARK> |
|  | C) | <OPTION SELECETED> |
|  | D) | <OPTION CHECKED> |
 |
 |
17 |  |  Which of the following is not an attribute of the TEXTAREA tag? |
|  | A) | WRAP |
|  | B) | MINLENGTH |
|  | C) | COLS |
|  | D) | NAME |
 |
 |
18 |  |  Which of the following statements is true? |
|  | A) | An INPUT field of type password provides excellent security. |
|  | B) | An INPUT field of type password provides a masked field but no real security. |
|  | C) | A maximum length can not be set for a password field. |
|  | D) | A password INPUT field can only be included in a FORM that uses the get METHOD. |
 |
 |
19 |  |  Which tag is most suited for laying out a FORM? |
|  | A) | TEXT |
|  | B) | POST |
|  | C) | PREFORMAT |
|  | D) | PRE |
 |
 |
20 |  |  Which of the following is not a valid character entity? |
|  | A) | > |
|  | B) | < |
|  | C) | &mt; |
|  | D) | © |
 |
 |
21 |  |  Which of the following statements is false? |
|  | A) | An absolute URL can be used as a value to the ACTION attribute of the FORM tag. |
|  | B) | A relative URL can be used as a value to the ACTION attribute of the FORM tag. |
|  | C) | A mailto hyperlink can be used as a value to the ACTION attribute of the FORM tag. |
|  | D) | A IMAP script can be used as a value to the ACTION attribute of the FORM tag. |
 |
 |
22 |  |  The acronym CGI stands for |
|  | A) | Community of Gateway Inner |
|  | B) | Common Gateway Interface |
|  | C) | Common Gateway Internet |
|  | D) | Cisco Gateway Internet |
 |
 |
23 |  |  Which of the following tags or attributes would you not expect to see as a key part of a client pull HTML document? |
|  | A) | HTTP-EQUIV |
|  | B) | META |
|  | C) | CONTENT |
|  | D) | TYPE |
 |
 |
24 |  |  Which of the following is usually not part of an HTML editor? |
|  | A) | color selector |
|  | B) | spell checker |
|  | C) | hyperlink inserter |
|  | D) | gif builder |
 |
 |
25 |  |  Which of the following is not likely to be part of an HTML syntax checker? |
|  | A) | code analysis |
|  | B) | color selector |
|  | C) | link verification |
|  | D) | image analysis |
 |