Identify the letter of the choice that best matches the phrase or definition.

A. String data type for a text string in which blank spaces are replaced with a single blank space and opening and closing spaces are removed
B. String data type for a text string containing valid XML names with no whitespace
C. String data type derived from the Name data type, but restricting the use of colons anywhere in the name
D. Properties that distinguish one data type from another
E. Content that contains two or more values placed within a defined structure
F. Examples in XML Schema include sequence, choice, and all
G. An XML document that contains validation rules for an XML vocabulary
H. String data type for a value matching an unparsed entity defined in a DTD
I. Data type, another name for which is the "base type"
J. An XML document to be validated by a schema

A. xs:token
B. xs:NMTOKEN
C. xs:NCName
D. facet
E. complex type
F. compositor
G. schema
H. xs:ENTITY
I. primitive
J. instance document

Computer Science & Information Technology

You might also like to view...

Analyze the following code:

``` double[] array = {1, 2, 3}; ArrayList list = new ArrayList<>(Arrays.asList(array)); System.out.println(list); ``` a. The code is correct and displays [1, 2, 3]. b. The code is correct and displays [1.0, 2.0, 3.0]. c. The code has a compile error because an integer such as 1 is automatically converted into an Integer object, but the array element type is Double. d. The code has a compile error because asList(array) requires that the array elements are objects.

Computer Science & Information Technology

Which of the following represents a method for accessing the BIOS setup program?

A. boot Windows and go to Control Panel B. set a motherboard jumper and start the computer C. press a key or combination of keys during the BIOS POST D. boot to the BIOS setup floppy disk

Computer Science & Information Technology