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. Quit

  2. Closing

  3. Exit

  4. Anti

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

To solve this question, the user needs to have knowledge of HTML tags and how they are applied in web development.

The correct answer is:

B. Closing

Explanation:

In HTML, tags are used to define elements and their properties. The browser applies the feature of an opening tag until it encounters its corresponding closing tag. The closing tag is indicated by adding a forward slash (/) to the tag name before the closing angle bracket (>). For example, to define a paragraph in HTML, you would use the opening

tag and the closing

tag.

Therefore, option B, Closing, is the correct answer.

Multiple choice technology web technology
  1. Tags

  2. Code

  3. Slashes

  4. Properties

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

HTML tags are the fundamental codes that control how document content appears and is structured. Tags are enclosed in angle brackets and come in pairs (opening and closing) to define elements like headings, paragraphs, and formatting. Code is a broad term not specific to HTML, slashes are just part of tag syntax, and properties are attributes within tags, not the controlling mechanism themselves.

Multiple choice technology web technology
  1. src=img

  2. src=image

  3. img=file

  4. img src=file

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

To insert an inline image in HTML, the general syntax is:

<img src="image_file_path" alt="alternate_text">

Where:

  • img is the HTML tag used to define an image
  • src is an attribute used to specify the path to the image file
  • image_file_path is the relative or absolute URL to the image file
  • alt is an attribute used to specify alternate text for the image, which is displayed if the image cannot be loaded or if the user is using a screen reader

Therefore, the correct answer is:

The Answer is: D. img src=file

Multiple choice technology web technology
  1. Browser

  2. Editor

  3. Converter

  4. Processor

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

An HTML converter transforms text from other formats (like plain text, Word documents, or Rich Text) into HTML code. Browsers render HTML rather than convert it, editors help write HTML but don't convert between formats, and processor is too vague. Converters are specifically designed for translation between document formats.

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.