In the accompanying figure, ocean, fish, and background are all ____________________ with descriptive names.

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


layers

Computer Science & Information Technology

You might also like to view...

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

The Refresh button is used to update information on a Web page when its content changes periodically.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Visual Basic can store values in a ________, which is the space in a computer's memory that is given a name and is used to store values

A) warehouse B) variable C) data port D) hard drive

Computer Science & Information Technology

Using good grammar, explain the difference between hardware, software, and firmware

What will be an ideal response?

Computer Science & Information Technology