The equal sign in an assignment statement is referred to as the ____.

A. assignment unit
B. assignment controller
C. assignment operator
D. assignment status


Answer: C

Computer Science & Information Technology

You might also like to view...

Methods that are not interface methods and that do not provide implementations must be declared using keyword _______ .

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following will check to see if a password contains a # sign, given that the character code for "#" is 37? The password is 8 characters long and is stored in a variable named pword.

a. ``` var check = false; for (j = 1; j < 7; j++) { if (pword.charCodeAt[j] == 37); check = true; } ``` b. ``` var check = false; for (j = 0; j < 8; j++) { if (pword.charCodeAt(j) == 37) check = true; } ``` c. ``` var check = false; for (j = 0; j <= 8; j++) { if (pword.charCodeAt()== 37) check = true; } ``` d. ``` var check = true; for (j = 1; j < 9; j++) { if (pword.charCodeAt(37)== "#") check = true; } ```

Computer Science & Information Technology

When creating an address block, you correspond fields in the data source to fields in the main document in the ________ dialog box

A) Match Fields B) Merge Wizard C) Edit Recipient List D) Merge

Computer Science & Information Technology

Access saves ____ automatically as you move from record to record.

A. data B. queries C. tables D. all of the above

Computer Science & Information Technology