Computer Knowledge

Markup and Web Languages

1,701 Questions

Test your understanding of HTML tags, XML structures, and web page creation technologies. The questions cover elements like CSS styling, parsing documents, and defining web attributes. This section is essential for candidates appearing for computer proficiency tests in various competitive exams.

HTML tags and attributesXML document parsingCSS styling levelsWeb page creation basicsBrowser compatibility

Markup and Web Languages Questions

Multiple choice technology web 2.0
  1. Hypertext Markup List

  2. Happytext Markup Language

  3. Hypertext Mark Language

  4. Hypertext Markup Language

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTML stands for Hypertext Markup Language, which serves as the standard markup language for structuring and creating web pages. The other options are incorrect variations that replace standard terms with incorrect words like List, Happytext, or Mark.

Multiple choice technology web 2.0
  1. <-Comment->

  2. <--Comment-->

  3. <!--Comment-->

  4. <Comment/>

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The standard syntax for comments in HTML is . This prevents the enclosed text from being rendered by browsers. Distractors like <--Comment--> or <-Comment-> lack the correct exclamation mark and double-hyphen structure required by the HTML parser.

Multiple choice technology web 2.0
  1. <a url="http://www.webdesignerhelp&quot;&gt;Web Designer Help</a>

  2. <link="http://www.webdesignerhelp&quot;/&gt;Web Designer Help</a>

  3. <a link="http://www.webdesignerhelp&quot;&gt;Web Designer Help</a>

  4. <a href="http://www.webdesignerhelp&quot;&gt;Web Designer Help</a>

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTML hyperlinks use the tag with an 'href' attribute: link text. 'url' and 'link' are not valid attributes, and option B has malformed syntax with both 'link=' and ''.

Multiple choice technology web 2.0
  1. <img display="image.gif" />

  2. <img image="image.gif" />

  3. <img src="image.gif" />

  4. <img ="image.gif" />

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

HTML images use the self-closing tag with a 'src' attribute pointing to the image file path: . 'display', 'image', and bare '=' are not valid image attributes.

Multiple choice technology web 2.0
  1. Radio Buttons

  2. Checkboxes

  3. Form

  4. Text Field

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Checkboxes are designed to let users select multiple independent options from a given list of choices in an HTML form. In contrast, radio buttons restrict selection to a single option, while text fields and forms do not serve as multi-select input controls.