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

  2. False

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

Although modern web browsers have exceptionally high compatibility with HTML5, none implement 100% of all HTML5 specifications, experimental features, and peripheral APIs. Therefore, the statement remains true, as full, comprehensive compliance across every detail has not been fully achieved by any single browser.

Multiple choice technology web 2.0
  1. MP3

  2. AIFF

  3. Wav

  4. AAC

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

HTML5 standardizes support for three audio formats in the `` element: MP3, Wav, and Ogg. While AAC is supported by many modern browsers, MP3 and Wav are the officially recognized standard options listed here, whereas AIFF is not standard. Thus, MP3 and Wav are correct.

Multiple choice technology web 2.0
  1. Ogg

  2. WebM

  3. MPEG 4

  4. HTML5 doesn't have video elements

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

HTML5 officially supports three video formats for the `` element: MP4 (MPEG 4 with H.264 video and AAC audio), WebM (with VP8/VP9 video and Vorbis/Opus audio), and Ogg (with Theora video and Vorbis audio). The claim that HTML5 lacks video elements is false.

Multiple choice technology web 2.0
  1. True

  2. False

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

HTML5 became an official W3C Recommendation in October 2014. The statement is false because HTML5 is indeed a W3C recommendation - it completed the standardization process and is now a formal web standard.

Multiple choice technology testing
  1. web_reg_save_param

  2. web_set_max_html_param_len

  3. lr_get_attrib_string

  4. lr_check_text

  5. web_reg_find

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

web_reg_find is the LoadRunner function used for text validation - it checks whether a specific text string exists in the server response. web_reg_save_param is for correlation, lr_get_attrib_string gets parameter attributes, lr_check_text doesn't exist in LoadRunner.

Multiple choice technology web technology
  1. [Bindable]

  2. [DefaultProperty]

  3. [DataBinding]

  4. [AutoUpdate]

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

In Adobe Flex, the [Bindable] metadata tag is used to mark a variable or property as eligible for data binding. When a property is marked as bindable, it can be used as the source or destination in data binding expressions, and changes to the property will automatically update bound destinations.

Multiple choice technology enterprise content management
  1. True

  2. False

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

A document view template is typically designed and associated with a specific object type or document type. It defines how that particular type of document should be displayed, what fields are visible, how they're arranged, and what actions are available. While you might be able to apply the same template to similar object types, the fundamental association is one-to-one between template and object type for proper rendering and data binding.

Multiple choice technology
  1. <?php>...</?>

  2. <?php…?>

  3. <script>...</script>

  4. <&>...</&>

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

PHP server-side scripts are enclosed in delimiters, which tell the PHP processor to interpret the code between them as PHP. Option A incorrectly uses and ?>, option C shows HTML script tags used for JavaScript, and option D shows invalid syntax.

Multiple choice technology architecture
  1. Only one

  2. More than one

  3. Zero

  4. None of the above

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

The PS Framework allows multiple pages to be defined under a single task in ps.xml, supporting complex workflows and navigation scenarios. Restricting to one page would severely limit the framework's ability to handle multi-page user interactions within a task.

Multiple choice technology
  1. Parsing JSP using an XML Parser.

  2. Converting JSP into static Html content.

  3. Generating Servlet Code for the Jsp

  4. none

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

JSP translation is the process where the web container converts JSP pages into Java Servlet source code. This happens automatically - the first time a JSP is accessed, it's translated to a Servlet, compiled to bytecode, and then executed. Subsequent requests use the compiled Servlet directly. Options A and B describe parsing or static content generation, not the translation process.