?The first line in a Hypertext Markup Language (HTML) file is the _____, which is a processing instruction indicating the markup language used in a document.

A. ?title
B. ?header
C. ?doctype
D. ?list

Answer: C

Computer Science & Information Technology

You might also like to view...

Office 2016's word processing software is called ________

A) Word B) Pages C) WordPad D) Notepad

Computer Science & Information Technology

Consider array items, which contains the values 0, 2, 4, 6 and 8. If method changeArray is called with the method call changeArray(items, items[2]), what values are stored in items after the method has finished executing?

``` public static void changeArray(int[] passedArray, int value) { passedArray[value] = 12; value = 5; } ``` a. 0, 2, 5, 6, 12. b. 0, 2, 12, 6, 8. c. 0, 2, 4, 6, 5. d. 0, 2, 4, 6, 12.

Computer Science & Information Technology