In OpenOffice Calc, a prewritten formula is called a(n) ________

A) macro

B) argument

C) address

D) function


D

Computer Science & Information Technology

You might also like to view...

The following program purports to sum all entered int values that are greater than 5. It compiles without any error message, and it executes without error message, but nevertheless is wrong. Name all the errors.

``` // Display the sum of all entered int values // greater than 5 #include int main() { using namespace std; int x, sum; while (x < 10) { cin >> x; if (x > 5); sum = sum +x; } cout << “The sum is values > 5 is “ << sum << endl; } ``` a) The while header needs a semicolon at the end of its line. b) The semicolon at the end of the if statement is an error that the compiler should catch. c) The semicolon at the end of the if statement causes all entered values to be summed. d) The sum variable is not initialized, so the output value is most likely garbage.

Computer Science & Information Technology

For Maps, a BiConsumer’s first parameter represents the _________ and its second rep- resents the corresponding __________ .

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

Computer Science & Information Technology

To log on to the computer system, enter your ________, which identifies you to the computer or operating system

A) Firstname B) User name C) Lastname D) Password

Computer Science & Information Technology

Treating risk begins with which of the following?

A. an understanding of risk treatment strategies B. applying controls and safeguards that eliminate risk C. understanding the consequences of choosing to ignore certain risks D. rethinking how services are offered

Computer Science & Information Technology