Quiznetik

Web Technology | Set 2

1. ----elements tell the browser how to display the content

Correct : A. <html>

2. ----is the standard markup language for creating Web pages

Correct : A. <html>

3. A browser does not display the HTML tags, but uses them to determine how to display the document

Correct : A. yes

4. The HTML document itself begins with -----and ends with </html>.

Correct : A. <html>

5. The visible part of the HTML document is between----and </body>.

Correct : B. <body>

6. <TAGS> tages are divided into 2 types

Correct : A. paired tag & single tag

7. The-----declaration represents the document type, and helps browsers to display web pages correctly.

Correct : C. <!doctype>

8. The------declaration for HTML5 is:

Correct : C. <!doctype>

9. The-------declaration is not case sensitive.

Correct : C. <!doctype>

10. -------defines the most important heading. <h6> defines the least important heading.

Correct : A. <H1>

11. <h1> defines the most important heading------- defines the least important heading.

Correct : A. <H6>

12. The HTML------element defines a paragraph.

Correct : B. <P>

13. The------tag defines a thematic break in an HTML page, and is most often displayed as a horizontal rule

Correct : C. <HR>

14. The HTML-----element defines a line break

Correct : A. <br>

15. The HTML-------element defines preformatted text.

Correct : D. <pre>

16. ------are used to indicate exactly how specific characters are to be formatted

Correct : A. physical tag

17. ------are used to indicate to the visually impaired that there is some emphasizes on the text.

Correct : C. logical tag

18. -----it is used to show the Bold text

Correct : A. <b>

19. -------it is used to show the Bold text and big font

Correct : B. <strong>

20. -----it is used to show the Italic text

Correct : C. <i>

21. ------it is used to show the Emphasized text

Correct : D. <em>

22. -------it is used to show the Smaller text.

Correct : B. <small>

23. ------it is used to show the Deleted text

Correct : A. <del>

24. -------it is used to show the Inserted text.

Correct : C. <ins>

25. -------it is used to show the Subscript text.

Correct : D. <sub>

26. -------it is used to show the Superscript text.

Correct : D. <sup>

27. The----tag is used to create the table in html

Correct : A. <table>

28. The -------tag is used to create a table caption

Correct : B. <caption>

29. The-------starts at the ((Source)) anchor and points to the ((Destination)) anchor. These LINKIS are called as hyperlinks

Correct : C. <link>

30. -----is a connection from one web resource to another.

Correct : C. <link>

31. -------allow visitors to navigate between websites by clicking on words, phrases, and images

Correct : D. hyperlinks

32. -------To create a link to another documents by using href attribute

Correct : A. <a>

33. --------is the attribute use to specify the destination address of the link used.

Correct : D. href

34. To use an image as a link, just put the------tag inside the <a> tag:

Correct : B. <img>

35. The HTML---------element defines a section that is quoted from another source.

Correct : A. <blockquote>

36. The HTML------tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).

Correct : B. <cite>

37. ------it is used to show the comments in html .

Correct : B. <!-->

38. The-----element is a block element, and will always start on a new line and take up the full width available.

Correct : D. Div

39. The-----element is an inline element, and will not start on a new line and only takes up as much width as necessary

Correct : C. <span>

40. The HTML-----attribute is used to specify a class for an HTML element.

Correct : B. <class>

41. The -------attribute is often used to point to a class name in a style sheet. It can also be used by a JavaScript to access and manipulate elements with the specific class name.

Correct : B. <class>

42. The HTML------element is used to create an HTML form for user input.

Correct : B. <form>

43. The-----tag is used to show the message to the user .

Correct : B. <label>

44. The <input type="-------"> defines a checkbox it is used to give no of option and we have to select more then one option.

Correct : C. <checkbox>

45. The <input type="radio"> defines a -------it is used to give no of option and we have to select only one option.

Correct : D. <radio button>

46. The <input type="-----"> defines a button for submitting the form data .

Correct : D. <submit>

47. The-----element defines a drop-down list.

Correct : B. <select>

48. -------tag is used to move the text form left to right or right or left.

Correct : A. <marquee>

49. -----tag is used to give the font effect like size , color and style.

Correct : A. <font>

50. ------it is used to show the text in small font effect.

Correct : A. <small>

51. --------it is used to show the text in big size font effect.

Correct : B. <big>

52. ------it is used to strike out that line or text .

Correct : C. <strike>

53. ------tag is used to show the underline effect to the text.

Correct : D. <u>

54. ------tag is used to show the definition in html document.

Correct : A. <dfn>

55. -----tag is used to show the code sample in html document

Correct : A. <code>

56. ------tag is used to show variable font in html document.

Correct : B. <var>

57. ------tag is used to show the citation or quote in html document .

Correct : C. <cite>

58. ------tag is used to show the keyboard tag in html document

Correct : D. <kbd>

59. ------tag is used to show bold and big in size in html document.

Correct : D. <strong>

60. -----tag is used to show the highlight text(bold) with italic font in html document.

Correct : A. <em>

61. ----stands for Cascading Style Sheets.

Correct : A. CSS

62. -----describes how HTML elements are to be displayed on screen, paper, or in other media.

Correct : A. CSS

63. ------saves a lot of work. It can control the layout of multiple web pages all at once.

Correct : A. CSS

64. An------CSS is used to apply a unique style to a single HTML element

Correct : B. inline

65. An-----CSS is defined in the <head> section of an HTML page, within a <style> element:

Correct : C. internal

66. With an--------style sheet, you can change the look of an entire web site, by changing one file!

Correct : D. external

67. An external style sheet can be written in any text editor. The file must not contain any HTML code, and must be saved with a -------extension.

Correct : A. .CSS

68. The CSS-------property defines the text color to be used.

Correct : A. color

69. The CSS------property defines the font to be used.

Correct : B. font-family

70. The CSS---------property defines the text size to be used.

Correct : C. font -size`

71. The CSS-------property defines a border around an HTML element:

Correct : D. border

72. The CSS--------property defines a margin (space) outside the border

Correct : D. Margin

73. To define a style for special types of elements, add a-----attribute is apply to the element

Correct : D. class

74. -------are used to explain the code, and may help when you edit the source code at a later date.

Correct : D. comments

75. ------are ignored by browsers.

Correct : D. comments

76. ------stands for -

Correct : A. Cascade style sheets

77. Which of the following is the correct syntax for referring the external style sheet?

Correct : B. <style src = "example.css" >

78. The property in CSS used to change the---------of an element is -

Correct : C. background-color

79. The property in CSS used to change the text-----of an element is Sol: -

Correct : B. color

80. The CSS property used to control the element's------is -

Correct : C. font-size

81. The HTML attribute used to define the inline------is -

Correct : A. style

82. The HTML attribute used to define the internal style sheet is ------

Correct : B. style

83. Which of the following CSS property is used to set the background image of an element?

Correct : B. background-image

84. Which of the following is the correct syntax to make the background-color of all paragraph elements to yellow?

Correct : A. p {background-color : yellow;}

85. Which of the following is the correct syntax to display the hyperlinks without any underline?

Correct : C. a {text-decoration : none;}

86. Which of the following property is used as the shorthand property for the padding properties?

Correct : C. padding

87. The CSS property used to make the-------is -

Correct : C. font: bold

88. Are the negative values allowed in padding property?

Correct : A. Yes

89. Which of the following property is used as the shorthand property of margin properties?

Correct : C. margin

90. The CSS property used to specify the transparency of an element is

Correct : C. visibility

91. Which of the following is used to specify the subscript of text using CSS?

Correct : A. vertical-align: sub

92. The-----CSS is also a method to insert style sheets in HTML document. This method mitigates some advantages of style sheets so it is advised to use this method sparingly.

Correct : B. inline

93. -----style sheet is generally used when you want to make changes on multiple pages. It is ideal for this condition because it facilitates you to change the look of the entire web site by changing just one file.

Correct : B. inline

94. -----tag is used to display the list in order wise like 1,2 3.. or A,B,C..

Correct : C. <ol>

95. ----tag is used to display the bullet wise list in unordered wise.

Correct : A. <meta>

96. -----tag is used to specify the page description ,keyword, author name, it is additional information about the information.

Correct : A. <meta>

97. -----tag is used to define the list item.

Correct : A. <li>

98. -----is used to define the width of border while cellpadding define distance between cell border and content within it .

Correct : A. <cellspacing>

99. cellspacing is used to define the width of border while------define distance between cell border and content within it .

Correct : B. <cellpadding>

100. ------tag is used to declaring the title or name of the html document.

Correct : B. <title>