Identify the letter of the choice that best matches the phrase or definition.

A. Select a single cell
B. Select a range of cells
C. Select nonadjacent cells or ranges
D. Select an entire row
E. Select all cells on the worksheet


A. Click the cell
B. Click the first cell in the range (upper-left corner) and drag to the last cell in the range (lower-right corner)
C. Press and hold Ctrl as you click to select additional cells
D. Click the row heading
E. Click the Select All button in the upper-left corner of the workbook window

Computer Science & Information Technology

You might also like to view...

In the line of pseudocode, "Set the value of Area to length × width", "Area" is a ____.

A. value B. variable C. constant D. primitive

Computer Science & Information Technology

What will be displayed as a result of executing the following code? public class test { public static void main(String[] args) { int value1 = 9; System.out.println(value1); int value2 = 45; System.out.println(value2); System.out.println(value3); value = 16; } }

a. 9 45 16 b. 94516 c. 9 45 16 d. Nothing, this is an error

Computer Science & Information Technology

Using the material in this chapter and your own Internet research, prepare a presentation on the pros and cons of agile development methods.

What will be an ideal response?

Computer Science & Information Technology

Which of the following queries will result in an error message? Why? (Uses tables created in the Chapter 4 Lab Activity.)

1. SELECT UPPER(FirstName || ‘ ‘ || LastName) FROM student; 2. SELECT DeptId, COUNT (*) FROM employee; 3. INSERT INTO DEPT VALUES (90, RESEARCH, NULL, NULL); 4. SELECT DeptId, SUM (Salary) FROM employee WHERE SUM (Salary) > 200000 GROUP BY DeptId; 5. SELECT SUM(EmployeeId) FROM employee;

Computer Science & Information Technology