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
-
SQL
-
GWBASIC
-
HTML
-
None of these
C
Correct answer
Explanation
HTML (HyperText Markup Language) is the standard markup language used to create the structure and content of web pages. SQL is for database queries, and GWBASIC is an old programming language not used for modern web development.
-
Asymmetric JavaScript and XML
-
Asynchronous JavaScript and Extended ML
-
Asynchronous Java and XML
-
Asynchronous JavaScript and XML
D
Correct answer
Explanation
AJAX stands for Asynchronous JavaScript and XML, a technique for creating interactive web applications.选项 A ('Asymmetric'),选项 B ('Extended ML' - incorrect), and选项 C ('Asynchronous Java' - should be JavaScript, not Java) are incorrect.
-
APPENDCHILDXML
-
DEPTH
-
EXTRACT
-
DUMP
D
Correct answer
Explanation
DUMP is a PL/SQL function that returns a VARCHAR2 value representing the internal data type, length, and internal representation of an expression. It's not specifically an XML function like APPENDCHILDXML, DEPTH, or EXTRACT which are designed for XML manipulation.
-
Whitelist Markup Language
-
Wireless Markup Language
-
Wildcard Mashup Language
-
Wizard Mashup Language
B
Correct answer
Explanation
WML (Wireless Markup Language) is an XML-based markup language designed specifically for mobile devices with limited display capabilities and processing power. It was used in WAP (Wireless Application Protocol) enabled phones to browse simplified web content before modern smartphones and HTML5 became dominant.
-
<servlet>
-
<servlet-pattern>
-
<servlet-name>
-
<servlet-mapping>
D
Correct answer
Explanation
The tag in web.xml maps a servlet to a URL pattern. It contains (referencing the servlet) and (the path pattern). The tag defines the servlet class and name, and don't contain URL patterns.
-
<error-page>
-
<error-type>
-
<error>
-
<error-resource>
A
Correct answer
Explanation
The tag in web.xml specifies error handling for specific HTTP error codes or Java exception types. It contains or and pointing to the error page resource. Tags like , , and don't exist in the servlet specification.
-
<init-param>
-
<context>
-
<context-param>
-
<context-value>
C
Correct answer
Explanation
The tag in web.xml defines name-value pairs for the ServletContext, making parameters accessible to all servlets in the application. is for servlet-specific parameters (within ), and and are not valid web.xml tags.
-
Author webpages
-
Plot complicated graphs
-
Translate one language into another
-
Solve equations
A
Correct answer
Explanation
HTML (HyperText Markup Language) is primarily used to create and structure web pages. It defines the content and layout of web documents. HTML is not used for plotting graphs, language translation, or solving equations - those require different tools.
C
Correct answer
Explanation
Drupal is a free, open-source CMS. Nuxeo and Alfresco are both open-source enterprise content management systems. Open Text Livelink and Vignette are proprietary commercial products.
-
Share
-
Collaborator
-
Sudio
-
Forums
A
Correct answer
Explanation
Alfresco Share is the collaborative web application interface for Alfresco ECM, providing social collaboration features, document management, and workflow capabilities within a team environment.
-
Java
-
PHP
-
Perl
-
Ruby on Rails
A
Correct answer
Explanation
Alfresco is built on Java and Java EE technologies. It uses Spring Framework, Hibernate, and runs on application servers like Tomcat, making Java its core development platform.
-
Transformation
-
Templating
-
Meta Data Extraction
-
None of the Above
D
Correct answer
Explanation
Joomla supports all listed features: templating for design flexibility, content transformation, and meta data extraction for SEO and organization. Therefore 'None of the Above' correctly indicates no unsupported functionality.
A
Correct answer
Explanation
Joomla offers robust multilingual support through its language association system, allowing content creation in multiple languages. This feature is fundamental to Joomla's internationalization capabilities.
C
Correct answer
Explanation
In HTML, the TITLE tag must be placed within the HEAD section of the document, not in the BODY or FORM. The TITLE tag defines the browser tab title and is essential metadata. Form and Title are not valid container elements for TITLE.
-
bold
-
italic
-
list
-
indented
B
Correct answer
Explanation
The EM tag in HTML indicates emphasized text, which browsers typically display in italic style. Unlike the I tag which is purely visual, EM carries semantic meaning of stress emphasis. STRONG would display as bold, not italic.