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 testing
  1. XML

  2. Oracle

  3. CTI

  4. MW

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

XML is the core data format used in SOAP-based web services testing. SOAP (Simple Object Access Protocol) messages are XML documents that structure data in a hierarchical format. Oracle is a database, CTI is telephony integration, and MW stands for middleware (generic term) - none of these are data formats used in SOAP testing. XML is the standard for all SOAP communications.

Multiple choice technology testing
  1. Ambiguous branches and to check the syntax.

  2. Ambiguous branches, Cascading phrases,normalization errors and to check the syntax.

  3. Cascading phrases and normalization errors only.

  4. Normalization errors only.

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

Microsoft SRGS (Speech Recognition Grammar Specification) validation tool checks for cascading phrases (where one rule contains another) and normalization errors (grammar format issues). Option B adds ambiguous branches which are typically checked by different tools.

Multiple choice technology testing
  1. VoiceXML 3.0 is the current release we are using.

  2. VoiceXML has a scope of DTMF input as well as Voice inputs

  3. VoiceXML is a dynamic one.

  4. Voice Browser is a component of VoiceXML

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

VoiceXML 2.0 and 2.1 are the industry-standard, widely adopted versions for developing voice applications. VoiceXML 3.0 was never fully adopted as the mainstream active release, making the statement that it is currently used false, while the other statements are true.

Multiple choice technology testing
  1. Voice Browsers

  2. Voice Interpreter

  3. Microsoft SRGS validation tools

  4. Voice mails.

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

VoiceXML documents are interpreted by Voice Browsers, similar to how web browsers interpret HTML. Voice Browsers execute VoiceXML applications, handle speech recognition/playback, and manage telephony resources. A Voice Interpreter is not a standard term in this context, and voicemail systems are different applications entirely.

Multiple choice technology web 2.0
  1. Example Markup Language

  2. X-Markup Language

  3. eXtra Modern Link

  4. eXtensible Markup Language

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

XML stands for eXtensible Markup Language, which is designed to store and transport data while allowing users to define their own custom tags. The other options are incorrect distractors that do not match the official name of the XML standard defined by the W3C.

Multiple choice technology web 2.0
  1. XML uses a DTD to describe the data

  2. XML uses a description node to describe data

  3. XML uses XSL to describe data

  4. XML uses a DND to describe the data

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

XML uses Document Type Definition (DTD) to describe the structure and content of XML data, defining valid elements, attributes, and their relationships. This makes option A correct. XSL is for transformation, not description. Options B and D contain terminology that doesn't exist in XML standards.

Multiple choice technology web 2.0
  1. True

  2. False

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

XML and HTML serve different purposes. HTML is for displaying web pages in browsers with fixed presentation tags, while XML is for structured data storage and transport with customizable tags. XML was designed to complement HTML, not replace it. They are complementary technologies - HTML for display, XML for data. The statement is false because XML never aimed to replace HTML's presentation role.

Multiple choice technology web 2.0
  1. <?xml version="1.0" />

  2. <xml version="1.0" />

  3. <?xml version="1.0"?>

  4. <?xml version="1.0"? />

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

The XML declaration is a processing instruction that defines version and encoding, which begins with ``. It must not contain a forward slash before the closing tag, making the selected syntax correct while the other choices are invalid.

Multiple choice technology web 2.0
  1. True

  2. False

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

XML elements can be empty, containing no content or nested elements. Empty elements can be represented using a start tag followed immediately by an end tag, or using the self-closing shorthand notation. Therefore, the statement claiming that XML elements cannot be empty is false.

Multiple choice technology web 2.0
  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, which is used for transforming and presenting XML documents. This makes option B correct. Options A, C, and D propose incorrect expansions that don't represent the actual meaning of XSL in web technologies and XML processing.

Multiple choice technology web 2.0
  1. True

  2. False

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

XML syntax rules strictly require all attribute values to be enclosed in either single or double quotes. Unlike HTML, omitting these quotation marks violates the well-formedness rules of the language, which causes XML parsers to fail and report syntax errors when reading the document.

Multiple choice technology web 2.0
  1. All XML documents must have a DTD

  2. All XML elements must be properly closed

  3. All XML elements must be lower case

  4. All XML elements must be uppercase

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

Well-formed XML requires that every opening tag has a matching closing tag. A DTD is optional and not mandatory for all XML documents. XML tag names are case-sensitive but can be defined in either uppercase or lowercase, meaning there is no requirement forcing them to use only one specific casing.

Multiple choice technology web 2.0
  1. XML elements must be properly nested

  2. XML tags are case sensitive

  3. XML documents must have a root tag

  4. All the statements are true

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

XML elements must be properly nested to avoid overlapping tags, and tags are case-sensitive. Additionally, every well-formed XML document requires exactly one root element enclosing all other elements. Because all three of these requirements are standard XML rules, the choice stating that all statements are true is correct.

Multiple choice technology web technology
  1. Hyper Text Markup Language

  2. Hyperlinks and Text Markup Language

  3. Home Tool Markup Language

  4. Hyper Terminal Mode Language

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

HTML stands for Hyper Text Markup Language, which is the standard markup language for creating web pages. This makes option A correct. Options B, C, and D propose incorrect expansions that don't represent the actual meaning of HTML in web development and markup languages.