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
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
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
Which of the following is NOT an example of a synchronous communication?
A) online chat B) podcast C) VoIP phone call D) instant message
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