The __________ must be stored in memory before the computer can manipulate the data.

a. current program only
b. current program and the current data
c. current data only
d. neither

b. current program and the current data

Computer Science & Information Technology

You might also like to view...

The comparison operator symbol for less than or equal to is ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is wrong with this code?

``` if(x = 2) { cout<<”The number is 2”; } ``` A. There should not be { }’s B. A semicolon is missing in the if statement – if (x = 2 ) C. The if statement should be if ( x == 2 ) D. Nothing

Computer Science & Information Technology