No student devices needed. Know more
26 questions
XSLT is:
Extensible Stylesheet Language Translators
Extended Stylesheet Language Transformation
Extensible Stylesheet Language Transformation
Extensible Style Language Transformation
XSLT is/is used for:
Navigating in XML documents
Is a W3C Recommendation
Is a Cascading Style Sheets
Transforms an XML document into another XML document
Templates are defined by using:
<template>
<x:template>
<xsl:template>
<xsl>
Which of the following is NOT a valid XSLT operator?
= | !=
and | or
< | >
> | <
This is the language for navigating in XML Documents
XSL-FO
XPath
XSLT
XQuery
True or false:
<xsl:template> elements can be nested inside each other.
True
False
Which of the following variable declarations is correct?
<xsl:variable name="hisName" select="'Syd'"/>
<xsl:variable name="$hisName" select="'Syd'"/>
<xsl:variable name="hisName" select="Syd"/>
<xsl:variable name="$hisName" select="Syd"/>
You have declared a variable like this:
<xsl:variable name="hisName" select="'Syd'"/>
Which is the correct way of using it?
<xsl:value-of select="'hisName'"/>
<xsl:value-of select="hisName"/>
<xsl:value-of select="$hisName"/>
<xsl:value-of select="'$hisName'"/>
Which of the following elements can NOT be used inside <xsl:choose>?
<xsl:otherwise>
<xsl:when>
<xsl:if>
Which of the following does NOT have a test= attribute?
<xsl:when>
<xsl:otherwise>
<xsl:if>
XML was developed over ____.
XSLT
HTML
GML
SGML
Prefixing an element in a XML document, with a unique prefix, prevents it from being _____.
accessed
duplicated
deleted
overridden
<!ELEMENT element-name (child-name*)>
Which of the following does the above syntax represent?
Only Once Occurrence
Minimum One Occurrence
Zero or More Occurrence
Zero or One Occurrence
<!ELEMENT element-name (child-name?)>
Which of the following does the above syntax represent?
Only Once Occurrence
Minimum One Occurrence
Zero or More Occurrence
Zero or One Occurrence
What are the special characters in XML?
< (<), & ('), > (>), " ("), and ' (!)
< (>), & (&), > (<), " ('), and ' (")
< (<), & (&), > (>), " ("), and ' (')
< (<), & (!), > (>), " ("), and ' (&)
What is XPath?
Language for navigating XML documents
Language for transforming XML documents
Language for formatting XML documents
Language for styling XML documents
What is XSLT?
Language for navigating XML documents
Language for transforming XML documents
Language for formatting XML documents
Language for styling XML documents
What is XSL-FO?
Language for navigating XML documents
Language for transforming XML documents
Language for formatting XML documents
Language for styling XML documents
The match attribute on the <xsl:template> element contains a pattern expression.
match="title"
The above pattern belongs to which of the following?
Matching by name
Matching by attribute
Matching by root
Matching by ancestry
The match attribute on the <xsl:template> element contains a pattern expression.
match="section/title"
The above pattern belongs to which of the following?
Matching by name
Matching by attribute
Matching by root
Matching by ancestry
The match attribute on the <xsl:template> element contains a pattern expression.
match="/"
The above pattern belongs to which of the following?
Matching by name
Matching by attribute
Matching by root
Matching by ancestry
The match attribute on the <xsl:template> element contains a pattern expression.
match="section/title[@short-name]"
The above pattern belongs to which of the following?
Matching by name
Matching by attribute
Matching by root
Matching by ancestry
Choose minOccur and maxOccur accordingly to determine whether the number of elements is zero or once?
0,1
1,1
0,*
1,*
Choose minOccur and maxOccur accordingly to determine whether the number of elements is at least once?
0,1
1,1
0,*
1,*
Choose minOccur and maxOccur accordingly to determine whether the number of elements is only once?
0,1
1,1
0,*
1,*
Choose minOccur and maxOccur accordingly to determine whether the number of elements is infinite?
0,1
1,1
0,*
1,*
Explore all questions with a free account