Computer Knowledge

Markup and Web Languages

1,492 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 technology
  1. <h1>text</h1>

  2. text

  3. <big>text</big>

  4. <font size="1">text</font>

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

The tag renders text at a larger font size, specifically one level larger than the surrounding text. While deprecated in HTML5, this was the standard HTML4 tag for increasing font size incrementally. The

tag creates a heading (semantic structure), decreases size, and sets an absolute small size.

Multiple choice technology web technology
  1. Character

  2. Face

  3. Text-type

  4. Font-type

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

In HTML's tag, the 'face' attribute specifies the font family/typeface to use (e.g., face="Arial"). The correct syntax is . The other options are not valid HTML attributes for font selection - 'Character' and 'Text-type' don't exist, and 'Font-type' is not the correct attribute name.

Multiple choice technology
  1. True

  2. False

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

HTML is a markup language for describing document structure and content, NOT a protocol. HTTP is the protocol for transferring web content. HTML itself has no protocol functionality.

Multiple choice technology databases
  1. configuration, environments, environment, transactionManager, dataSource, mappers,mapper

  2. configuration, environments, transactionManager, dataSource, property, mappers

  3. configuration, environments, environment, transactionManager, dataSource, property, mappers,mapper

  4. configuration, environment, transactions, dataSource, property, mappers,mapper

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

iBATIS configuration XML requires nested tags: root, containing , , , for settings, and with nested tags. Option C includes all required elements in proper hierarchy.

Multiple choice technology web technology
  1. eXtra Modern Link

  2. X-Markup Language

  3. eXtensible Markup Language

  4. Example Markup Language

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

To answer this question, the user needs to know what XML stands for.

The correct answer is:

C. eXtensible Markup Language

Option A is incorrect because "eXtra Modern Link" is not the correct expansion of XML.

Option B is incorrect because "X-Markup Language" is not the correct expansion of XML.

Option D is incorrect because "Example Markup Language" is not the correct expansion of XML.

Therefore, the correct answer is option C, "eXtensible Markup Language".

Multiple choice technology web technology
  1. XML uses a description node to describe data

  2. XML uses XSL to describe data

  3. XML uses a DTD to describe the data

  4. None

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

A Document Type Definition (DTD) defines the legal building blocks of an XML document, describing its structure and the data elements it contains.

Multiple choice technology web technology
  1. eXtensible Style Listing

  2. eXtensible Stylesheet Language

  3. eXtra Style Language

  4. eXpandable Style Language

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

XSL stands for eXtensible Stylesheet Language. It's a family of languages used to transform and render XML documents. XSLT (XSL Transformations) and XSL-FO (XSL Formatting Objects) are parts of the XSL family. The other options are incorrect expansions.