A(n) ____ is a word that is predefined by the programming language for a special purpose and can only be used in a specified manner for its intended purpose.

A. variable
B. identifier
C. reserved word
D. data type


Answer: C

Computer Science & Information Technology

You might also like to view...

The ____________ displays a standard Windows Save As dialog box.

a. Save As method b. Save File Dialog control c. Save_File event d. Open File Dialog control

Computer Science & Information Technology

What are the base cases in the following recursive method?

``` public static void xMethod(int n) { if (n > 0) { System.out.print(n % 10); xMethod(n / 10); } } ``` a. n > 0 b. n <= 0 c. no base cases d. n < 0

Computer Science & Information Technology

Which of the following is NOT an example of a synchronous communication?

A) online chat B) podcast C) VoIP phone call D) instant message

Computer Science & Information Technology

Besides the Page Setup dialog box, where else can you create headers or footers?

A) Home tab, Text group, Header & Footer B) Insert tab, Text group, Header & Footer C) Page Layout tab, Text group, Header & Footer D) View tab, Text group, Header & Footer

Computer Science & Information Technology