Dates can be treated as other numbers because Excel assigns a ________ value to the date as it is entered

A) navigation B) comparison C) serial D) logical

C

Computer Science & Information Technology

You might also like to view...

The code below is supposed to add the numbers from 1 up to and including 10. It does not calculate the correct sum. The problem is caused by a(n) ________ error.

``` int sum = 0; for (int count = 1; count < 10; count++) sum += count; ``` a) syntax b) compilation c) requirement d) off-by-one e) testing

Computer Science & Information Technology

Which of the following is not a corporate objective affected by improvements to an information system?

A) improving cooperation with vendors and partners B) improving customer service C) improving the software development strategy of the organization D) improving internal decision support so that decisions are more effective

Computer Science & Information Technology