Keyword ________ indicates that an element contains parseable character data.

a) PARSEDATA
b) CHARDATA
c) CDATA
d) PCDATA

d) PCDATA

Computer Science & Information Technology

You might also like to view...

The Spelling & Grammar button is found on the Review tab in the ________ group

Fill in the blank(s) with correct word

Computer Science & Information Technology

What does the following program do?

``` // Printing.java public class Printing { public static void main(String[] args) { for (int i = 1; i <= 10; i++) { for (int j = 1; j <= 5; j++) { System.out.print('@'); } System.out.println(); } } } ```

Computer Science & Information Technology