(WEB DEVELOPMENT)
I. MULTIPLE CHOICE
Direction: Choose the letter of the correct answer. Avoid unnecessary ERASURES.
1. A web page can be divided into sections, like boxes, called ________.
a. span
b. div
c. nav
d. header
2. It define an independent self-contained article?
a. aside
b. footer
c. article
d. section
3. Like the <div> element, the _____ element is also used as a container to group other elements.
a. header
b. CSS
c. paragraph
d. span
4. What Web Technology is used to change the colors, fonts, animations, and transitions on the web?
a. Programming Language b. HTML c. Frameworks d. CSS
5. What Web Technology is used to interpret the web? They request information and then when they receive it, they show us on the
page in a format we can see and understand.
a. Framework b. Browser c. HTML d. Protocol
6. This adds space around a content element. Required value is any number in pixels.
a. padding
b. width
c. font
d. height
7. This allows an element to float either to the left or to the right of its preceding element. Required values are "left" or "right". Use
this to your div columns so that they align side by side.
a. padding
b. font-size
c. float
d. margin
8. Specifies font type. Required value is any font type. For example, Arial, Helvetica, sans-serif.
a. Font-size b. font-style
c. Font-face d. font-weight
9. It is the space between the edge of the box and the border. It is completely transparent.
a. border b. padding
c. margin d. content
10. What does TCP means? A line that separates the margin and the padding.
a. border b. padding
d. margin d. content
11. What does HTML stands for?
a. Hyper Text Markup Language b. Hyperlink Markup Language
c. Home Tool Markup Language d. Hyperlink Tool Markup Language
12. What is the correct HTML Tag for Head?
a. </head> b. <head/> c. <head></head> d. <?head></head>
13. What text formatting is used to make the text bold?
a. <bold></bold> b. <bd></bd> c. <bold/> d. <b></b>
14. What is the correct HTML Element for Body?
a. </body> b. <body></body> c. <b></b> d. <bd></bd>
15. What is the correct HTML Element used to emphasized text.
a. <em></em> b. <emphasized></emphasized> c. <u></u> d. <b></b>
16. Which character is used to indicate an end tag?
a. / b. () c. <> d. {}
17. Which of the following is not an empty element?
a. <br> b. <h1></h1> c. <hr> d. <!-- -->
18. What element is used to define paragraph?
a. <p></p> b. <paragraph></paragraph> c. <ph></ph> d. <pr></pr>
19. What element is used to define subscript text?
a. <sub></sub> b. <del></del> c. <mark></mark> d. <u></u>
20. Which of the following is used to define italic text?
a. <b></b> b. <u></u> c. <i></i> d. <italic></italic>
21. Which of the following HTML text formatting is used to provide this output: JUAN:
a. <sub></sub> b. <del></del> c. <mark></mark> d. <u></u>
22. What does CSS stand for?
a. Cascading Style Sheets b. Colorful Style Sheets c. Creative Style Sheets d. Computer Style Sheets
23. Where in HTML document is the correct place to add to an external style sheet?
a. At the end of the document b. In the <head> section
c. In the <body> section d. At the start of the document
24. Which HTML tag is used to define an internal style sheet?
a. <css> b. <style> c. <script> d. <stylesheet>
25. Which HTML attribute is used to define inline styles?
a. Font b. id c. style d. class
26. Which is the correct Syntax for external CSS?
a. selector {properties:value;} b. selector {value:properties;}
c. selector {properties;value:} d. selector (properties:value; )
27. What is the correct syntax for HTML inline Style.
a. <tagname style=”properties:value;”> b. <tagname style=”value;properties;”>
c. <tagname style=”properties=value;”> d. <tagname style=”value=properties;”>
28. What property is used to change the alignment of text?
a. align-text b. text-align c. align d. vlign
29. Which property is used to change the font of an element?
a. font-style b. font-weight c. font-family d. style-font
30. How to select an element with id "menu"?
a. #menu b. menu c. .menu d. *menu
31. How to select elements with class name "nav"?
a. nav b. .nav c. #nav d. *nav
32. What property is used to change the color of the text?
a. color b. font-color c. color-font d. style-color
33. What property is used to align the text?
a. align-text b. text-align c. align d. alignText
34. In hexadecimal value or hex for short. An example is #000000 which is equivalent to ______.
a. blue b. black c. red d. white
35. Which of the following property is used to generate space around of element's content, inside of any defined borders?
a. padding b. margin c. border-margin d. margin-text
36. What property is used to set an image as the background of an element?
a. background b. background-image c. image-background d. bgImage
37. What property is used to specify the style, width, and color of an element's border?
a. border-width b. border-style c. border-color d. border
38. Which property is used to create space around elements, outside of any defined borders?
a. margin b. padding c. border-margin d. margin-text
39. How to change the size of the text using css?
a. size:10px; b. font-size:10px; c. size-font:10px; d. font:10px;
40. In hexadecimal value or hex for short. An example is #ffffff which is equivalent to ______.
a. blue b. black c. red d. white
41. What is the correct HTML to connect an External Style Sheet?
a. <stylesheet>[Link]</stylesheet>
b. <style src="[Link]">
c. <link rel="stylesheet" href="[Link]">
d. <link rel="stylesheet" type="[Link]">
Enumeration:
(42-44) Write the three types of CSS.
(45-50) Give the 6 parts of webpage