If you want to print your query results, you can do this on the ________ tab

Fill in the blank(s) with correct word

File

Computer Science & Information Technology

You might also like to view...

The Technician on call has just finished working on a PC by creating a plan of action and implementing a solution. What is his next step according to the troubleshooting threory?

a. Identify the problem b. Document the actions c. Verify the system works d. Formulate a theory

Computer Science & Information Technology

Here is a small program. Which of the statements about the variables is correct?

``` #include const double NUM = 2.9345358; double num = 3; double numTimes(int x); int main( ) { using namespace std; int value; cout << “Enter a value, I’ll multiply it by “ << NUM << endl; cin >> value; cout << “You entered “ << value << “ NUM times this is “ << numTimes(value) << endl; return 0; } double numTimes(int x) { double d; d = NUM * x; return d; ``` a) NUM is a global variable. b) num is a global constant. c) value is local variable in the main function d) d is a local variable in the numTimes function.

Computer Science & Information Technology