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 architecture
  1. <c:set var="xsluri" scope="page"><c:out value="sepaddoverview"/></c:set> <aab-util:aabProcessXML xslUri="${xsluri}" xmlDoc="${xmlDoc}" />
  2. <c:set var="xsluri" scope="page"><c:out value="sepaddoverview"/></c:set> <aab-xml:aabProcessXML xslUri="${xsluri}" xmlDoc="${xmlDoc}" />
  3. <aab-xml:aabProcessXML xslUri="sepaddoverview" xmlDoc="${xmlDoc}" />
  4. Only b and c

  5. All of the above

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

Both options b and c represent valid syntax for processing a JSP or XML using the AAB XML utility library. Option b stores the XSL URI in a page-scoped variable before invoking the tag, while option c passes the string literal directly. Both resolve to valid tag library usage.

Multiple choice technology architecture
  1. It changes the context path, request URI and request URL back to the ones before HTTP server rewrote the request.

  2. It rewrites the URLs in the format /nl/<application>?lang=<langCode> to /<langCode>/<application>.

  3. Only 2

  4. Both of the above

  5. None of the above

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

A Language filter typically intercepts incoming requests to manage localization. It restores the context path, request URI, and URL to their original states before HTTP server rewrites, and handles URL rewriting between path-based and query-parameter-based language indicators, performing both functions.

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, which are specialized software applications that process VoiceXML markup and interact with telephony systems to provide voice-based user interfaces. The voice browser handles the execution of VoiceXML applications, manages speech recognition, and plays back audio prompts. Voice Interpreter and Voice mails are not standard terminology for VoiceXML processing, and Microsoft SRGS validation is a grammar tool, not an interpreter.

Multiple choice technology web technology
  1. Relative

  2. Absolute

  3. Absolute and Relative

  4. Deferenced

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

To solve this question, the user needs to have a basic understanding of HTML and file paths.

The correct answer is:

C. Absolute and Relative

Explanation:

HTML supports both absolute and relative file paths.

Absolute file paths specify the complete address of the file, starting from the root directory. They include the protocol, domain name, and the complete path to the file. For example, "http://www.example.com/images/picture.jpg".

Relative file paths, on the other hand, specify the path to the file relative to the current page. They do not include the protocol or domain name. For example, "images/picture.jpg".

Option D, "Deferenced", is not a valid type of file path in HTML.

Therefore, the correct answer is C. Absolute and Relative.

Multiple choice technology web technology
  1. True

  2. False

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

To solve this question, the user needs to know the basics of hypertext links and inline images.

Inline images are images that are displayed directly within the content of a web page or document. Hypertext links, on the other hand, are clickable links that direct the user to another page or resource.

Now, let's go through each option and explain why it is right or wrong:

A. True: This option is correct. Inline images cannot be designated as hypertext links. While you can make an image clickable, it will still be an inline image rather than a hypertext link.

B. False: This option is incorrect. Inline images cannot be designated as hypertext links, so the statement "You cannot designate an inline image as a hypertext link" is true.

Therefore, the answer is: A. True.

Multiple choice technology
  1. Hypertext Mailing List

  2. Hypertext Mark Language

  3. Hypertext Markup Language

  4. Hypertext Mailing Language

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

HTML correctly stands for HyperText Markup Language, which is the standard markup language for creating web pages. The term 'markup' refers to the tags that define the structure and content of web documents.

Multiple choice technology
  1. Hypertext Mailing List

  2. Hypertext Mark Language

  3. Hypertext Markup Language

  4. Hypertext Mailing Language

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

HTML correctly stands for HyperText Markup Language, which is the standard markup language for creating web pages. The term 'markup' refers to the tags that define the structure and content of web documents.

Multiple choice technology
  1. Iframe

  2. Inframe

  3. frame

  4. inlineframe

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

The correct HTML tag for an inline frame is , which allows embedding another HTML document within the current page. This tag creates a window displaying external content seamlessly.

Multiple choice technology web technology
  1. Body

  2. Head

  3. Division

  4. Table

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

The page title in HTML is placed inside the HEAD tag, which contains metadata about the document. The BODY tag contains visible content, while HEAD contains elements like TITLE, META, and LINK that don't display on the page.