Description: programming languages Online Quiz - 266 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
XML Schemas are the Successors of
XSD is:
An XML Schema describes the structure of an XML _______
Schema is an _____ based alternative
To facilitate the editing of XML a markup language editor should be used with
Simple output filters which are supported by XSLT are ?
What is the correct symtax of for-each in XSLT ?
_______ onwards Internet Explorer supports XML, Namespaces, CSS, XSLT, and XPath.
From ________ onwards Firefox has support for XML and XSLT (and CSS).
Templates are defined by using
XSLT stylesheets having number of templates.
XML and XSLT supported by ___ browser's.
XSLT is used for
XSLT is:
What will be the output of the following program : void main() { int a=5,b=6,c=7; printf("%d %d %d"); }
What will be the output of the following program : void main() { int a=5,b=6; printf("%d"); }
What will be the output of the following program : void main() { int a=5; printf("%d"); }
What will be the output of the following program : void main() { unsigned ch='Y'; printf("%d",sizeof ch); }
What will be the output of the following program : void main() { int i=5; printf("%d %d %d %d %d",++i,i++,i++,i++,++i); }
What will be the output of the following program : void main() { int i=5,j=5; i=i++i++*i++*i++; printf("i=%d ",i); j=++j++j*++j*++j; printf("j=%d",j); }