programming languages Online Quiz - 265
Description: programming languages Online Quiz - 265 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
With an extensible Schema definition you cannot:
XML Schema became a W3C Recommendation
A simple element is an XML element that can contain only
The syntax for defining an attribute is
Restrictions on XML elements are called
How many indicators are present in Schema ?
One of the greatest strength of XML Schemas is the support for
With XML Schemas, the sender can ________ the data in a way that the receiver will understand.
Which of these are not a kind of complex elements
A default value is automatically assigned to the attributes when no other value is specified.
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7);
What does the following code do: int c=0; cout<
What is the outcome of cout<
Can we have a virtual constructor for a class?
What is the functional difference between myObj *x = new myObj[100]; delete x; and myObj *x = new myObj[100]; delete [] x;
Which of the following gives the memory address of a pointer a?
Which of the following reads in a string named x with one hundred characters?
What does the argument count variable store which is paased to main()?