By default, only the ________ options are allowed when the worksheet is protected

A) Select locked cells and Select unlocked cells B) Delete rows and Delete columns
C) Format rows and Format columns D) Edit objects and Format cells

A

Computer Science & Information Technology

You might also like to view...

Access queries can be created in Design view and then modified in SQL view

Indicate whether the statement is true or false

Computer Science & Information Technology

Consider integer array values, which contains 5 elements. Which statements successfully swap the contents of the array at index 3 and index 4?

a. values[3] = values[4]; values[4] = values[3]; b. values[4] = values[3]; values[3] = values[4]; c. int temp = values[3]; values[3] = values[4]; values[4] = temp; d. int temp = values[3]; values[3] = values[4]; values[4] = values[3];

Computer Science & Information Technology