Choose the correct pronoun in the following sentence.
The supervisor sets the schedule for __________ workers.?

A. ?his
B. ?his or her


Answer: B

Computer Science & Information Technology

You might also like to view...

What is wrong with the following Do loop?

``` Dim index As Integer = 1 Do While index <> 10 lstBox.Items.Add("Hello") index += 2 ``` (A) It should have been written as a Do Until loop. (B) It is an infinite loop. (C) The test variable should not be changed within the loop itself. (D) Nothing

Computer Science & Information Technology

If you have defined a class, SavingsAccount, with a public static data member named numberOfAccounts, and created a SavingsAccount object referenced by the variable account20, which of the following will assign numberOfAccounts to numAccounts?

a. numAccounts = account20.numAccounts; b. numAccounts = numOfAccounts; c. numAccounts = SavingsAccount.numberOfAccounts; d. numAccounts = account20;

Computer Science & Information Technology

Which of the following buttons is part of the Table Tools Design tab?

A) Table Row Height B) Merge Cells C) Draw Table D) Distribute Columns

Computer Science & Information Technology

Which of the following is a valid folder name?

A. PRN B. COM C. NUL D. LPT3

Computer Science & Information Technology