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 platforms and products
  1. Locale rule

  2. Login page rules

  3. Start page rules

  4. Order evaluation rule

  5. Rendering rules

  6. Skin rules

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

MWS supports various rule types for personalization and flow control, including Locale, Login page, Order evaluation, Rendering, and Skin rules. Start page rules are not a valid rule type in the MWS rule engine, making this the correct answer for 'not valid.'

Multiple choice technology web technology
  1. Annotation

  2. XML

  3. HTML

  4. None of the above

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

EJB 3.0 introduced annotations as the primary mechanism for mapping entity columns to database columns, replacing the verbose XML deployment descriptors of earlier EJB versions. While XML mapping files are still supported as an alternative, annotations provide a simpler, more intuitive inline approach. HTML is never used for ORM mapping.

Multiple choice technology programming languages
  1. One

  2. Multiple

  3. Two

  4. None

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

In the SAP ABAP Dictionary, a data element defines semantic properties and can be associated with at most one domain, which defines the technical properties like data type and length. A data element cannot reference multiple domains simultaneously.

Multiple choice technology programming languages
  1. Nothing

  2. Domain

  3. Values

  4. Data Element

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

Search help parameters must be assigned to Data Elements. The Data Element provides the necessary type information (via its Domain) and semantic description needed for the search help to function correctly. You don't assign Domains directly to search help parameters, and 'Nothing' or 'Values' are not valid answers.

Multiple choice technology packaged enterprise solutions
  1. Nothing

  2. Domain

  3. Values

  4. Data Element

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

Search help parameters must be assigned to a data element. The data element provides the parameter's definition including its semantic properties (description) and references a domain for technical attributes (data type, length). This ensures the search help parameter knows what type of data to handle and how to describe it to users.

Multiple choice technology programming languages
  1. .<style type="text/css">

  2. .<link rel="stylesheet" type="text/css" href="r4rcss.css">

  3. Both

  4. None

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

External CSS files are linked using the element placed in the HTML section. This approach separates content from presentation and allows multiple pages to share the same stylesheet. The tag is used for internal CSS embedded within the HTML document itself.

Multiple choice technology programming languages

  1. tag works in all browsers


  2. is recommended now.


  3. tag not supported for IE, Mazola etc. works in all browsers


  4. is more will outdated

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

The
tag is a self-closing element for line breaks. HTML5 allows
without the closing slash, but XHTML and earlier standards recommended
. Both syntaxes work in modern browsers, though the self-closing version is considered more standards-compliant.

Multiple choice technology programming languages
  1. HTML allow images and objects to be embedded on web page to create interactive forms by using some script

  2. .HTML allow images and objects to be embedded on web page to create interactive forms by using tags.

  3. Both of the above

  4. None

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

HTML allows images and objects to be embedded on a web page to create interactive forms using tags. While scripts can add dynamic behaviors, the capability to embed these objects is natively provided by standard HTML tags rather than scripting.

Multiple choice technology programming languages
  1. .shtml

  2. .html

  3. .htm

  4. .jsp

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

Server Side Includes (SSI) are HTML directives that are evaluated on the server to add dynamic content to pages. The standard and most common file extension used to process these directives on the server is .shtml.

Multiple choice technology programming languages
  1. <html><head></head><body><title></<title></body></html>

  2. <html><head><title></<title></head><body></body></html>

  3. <html><head><title></<title><body></body></head></html>

  4. <html><title></<title><head></head><body></body></html>

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

HTML requires proper nesting: contains and . The contains , and contains page content. Option B correctly shows -> -> sequence with proper closing order. Other options have incorrect nesting like outside .

Multiple choice technology web technology
  1. JavaScript and AJAX

  2. CSS

  3. LINQ

  4. HTML

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

Visual Studio 2008 (.NET 3.5) introduced IntelliSense support for JavaScript and AJAX to improve client-side development. CSS, LINQ, and HTML support existed or aren't the primary new feature.

Multiple choice technology programming languages
  1. page

  2. request

  3. context

  4. application

  5. None

  6. context and application

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

The valid scopes for jsp:useBean are page, request, session, and application. 'context' is not a valid scope value - it should be 'application' for application scope. Option C correctly identifies 'context' as invalid.

Multiple choice technology programming languages
  1. page

  2. request

  3. context

  4. application

  5. None

  6. context and application

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

The valid scope values for are: page (default), request, session, and application. 'context' is NOT a valid scope value. Option C is correct because 'context' is invalid. Option F claims both 'context and application' are invalid, but 'application' IS valid, so F is incorrect.