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 technology
  1. Asynchronous Javascript and XML, is the art of exchanging data with a server, and update parts of a web page - without reloading the whole page

  2. Asynchronous Javascript and XSLT, is the art of exchanging data with a server, and update parts of a web page - without reloading the whole page

  3. Asynchronous Javascript and XML, is the art of exchanging data with a server, and updates entire web page reloading the whole page

  4. Asynchronous Javascript and XSLT, is the art of exchanging data with a server, and updates entire web page reloading the whole page

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

AJAX stands for Asynchronous JavaScript and XML. It is a technique for creating interactive web applications where web pages can exchange data with a server and update specific parts of the page asynchronously, without requiring a full page reload. This creates a smoother, more responsive user experience. The 'XSLT' variants in options B and D are incorrect, and option C wrongly states it updates the entire page.

Multiple choice technology web technology
  1. Server side

  2. Client side

  3. Both client and Server side

  4. DB Server

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

JavaScript traditionally executes on the client-side within the web browser. It runs in the user's browser environment, allowing for interactive features, form validation, DOM manipulation, and dynamic content updates without server interaction. While Node.js now enables server-side JavaScript, in the context of traditional web development fundamentals, JavaScript is primarily a client-side scripting language.

Multiple choice technology architecture
  1. SOAP

  2. UDDI

  3. WSDL

  4. WS-I

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

WSDL (Web Services Description Language) is an XML-based language that describes web services' functionality, including available operations, message formats, and endpoint locations. It tells clients HOW to access a web service. SOAP is a messaging protocol, UDDI is a registry for publishing/discovering services, and WS-I is an interoperability organization - none of these describe the service interface like WSDL does.

Multiple choice technology platforms and products
  1. Using Joiner

  2. Create xml using Denormalized XML views( Hierarchical relationship)

  3. Direct Move possible

  4. None of the above

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

XML source groups require specific methods to combine into a single target. Joiner transformation merges XML groups based on keys. Denormalized XML views with hierarchical relationships can create unified XML output from multiple source groups.

Multiple choice technology web technology
  1. Advance JavaScript and XML

  2. Asynchronous JavaScript and XML

  3. Actual JavaScript and XML

  4. None of the Above

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

AJAX stands for Asynchronous JavaScript and XML. It describes a technique for making asynchronous HTTP requests from the browser to exchange data and update parts of a web page without requiring a full page reload. Despite the name containing XML, modern AJAX often uses JSON instead.

Multiple choice technology web technology
  1. JavaScript and XML

  2. JavaScript and Java

  3. VBScript and XML

  4. JavaScript and HTTP requests

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

AJAX is based on JavaScript for client-side logic and XML for data exchange (traditionally). The core technology is the XMLHttpRequest object, which JavaScript uses to make asynchronous HTTP requests. While modern AJAX often uses JSON instead of XML, the name reflects the original design.

Multiple choice technology web technology
  1. Search engines would not be able to index an AJAX application

  2. ActiveX requests are enabled only in IE 5 and IE6

  3. Back button in the browser

  4. All the above

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

AJAX has several disadvantages: search engines cannot easily index dynamically loaded content (SEO issue), browser back/forward buttons don't work with AJAX page updates by default, and historically there were browser compatibility concerns. Since all three listed options describe genuine disadvantages, 'All the above' is correct.

Multiple choice technology platforms and products
  1. Activity defenition

  2. Transaction defenition

  3. FPS defenition

  4. Program defenition

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

In the Hogan CICS environment, the Transaction definition is the first element triggered when you enter a transaction name or screen identifier. This transaction definition then points to the Program, which contains Activity definitions. The 24th line reference is specific to Hogan screen entry conventions.

Multiple choice technology testing
  1. GetData(Row,Col)

  2. GetRowValue(Rowid,Colname)

  3. GetCellData (Row,Col)

  4. GetRowValue(Row,Col)

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

GetCellData(Row,Col) is the correct method to retrieve data from an HTML Table in QTP/UFT. The other options (GetData, GetRowValue with various signatures) are not standard methods for table cell extraction.

Multiple choice technology platforms and products
  1. True

  2. False

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

Rule Resolution in Pega is a fundamental mechanism that determines which rule instance to execute at runtime. It DOES apply to Rule-HTML-Property rules (along with most other rule types) to select the appropriate version based on class, ruleset, and other criteria. The statement is correct.

Multiple choice technology platforms and products
  1. Fragments

  2. text files

  3. streams

  4. harnesses

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

In Pega, text file rules (Rule-File-Text) store static content like CSS style sheets, JavaScript files, or images. These rules are cached and served directly by the web server, bypass rule resolution during execution, and optimize performance compared to dynamic HTML fragments or harnesses.

Multiple choice technology programming languages
  1. A. The prefix defines the name of the tag that may be used for a tag library

  2. B. The prefix attribute defines the location of the tag library descriptor file.

  3. C. The prefix attribute should refer to the short name attribute of the tag library file that is defined by the uri attribute of taglib directive.

  4. D. The prefix attribute is used in front of a tagname of a tag defined within the tag library.

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

In JSP tag libraries, the prefix attribute serves as a namespace identifier. When you declare a tag library with <%@ taglib uri="..." prefix="..." %>, the prefix defines the short name you'll use to reference tags from that library in the JSP page. You then use this prefix before tag names, like . The prefix itself doesn't define the tag name or point to the TLD location - it's simply used as a namespace qualifier before tag names to distinguish them from tags in other libraries or standard JSP elements.