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

  2. False

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

AR System macros are designed for the Windows/Java thick client only and cannot execute in the web client environment. The web client lacks the macro execution engine that the thick client provides.

Multiple choice technology web technology
  1. True

  2. False

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

XML is designed for storing and transporting structured data, while HTML is designed for displaying data on web pages. XML does not replace HTML; rather, they serve different primary purposes and often complement each other. Thus, the statement is false.

Multiple choice technology programming languages
  1. True

  2. False

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

XML does not replace HTML. XML is designed to describe and carry structured data, focusing on what the data is, whereas HTML is designed to format and display documents, focusing on how information looks. They are complementary technologies with entirely different purposes and applications.

Multiple choice technology programming languages
  1. True

  2. False

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

XML and HTML serve different purposes and are complementary technologies. XML is for structured data storage and transport, while HTML is for marking up web page content. They can work together (for example, XHTML uses XML syntax to reformulate HTML), but XML was never designed to replace HTML.

Multiple choice technology enterprise content management
  1. True

  2. False

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

Documentum allows adding custom attributes to objects without modifying their type definition. These attributes are stored as name-value pairs on the object instance and do not require schema changes. This flexibility enables object-specific metadata while maintaining type integrity.

Multiple choice technology platforms and products
  1. Client machine

  2. Server

  3. Either 1 or 2

  4. Neither 1 nor 2

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

ASP.NET validator controls can run either on the client (using JavaScript) or on the server. The 'runat=server' attribute makes the control server-side, but many validators including RangeValidator can also generate client-side validation script. The behavior depends on settings like EnableClientScript.

Multiple choice technology web technology
  1. Hello World"

  2. document.write("Hello World")

  3. response.write("Hello World")

  4. ("Hello World")

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

document.write() is the correct JavaScript method to output text content to the HTML document. Option A is incomplete with a syntax error (missing opening quote), Option C uses ASP syntax (response.write), and Option D is just a string in parentheses without any command.