The size or ______of most outp ut devices is typically expressed in terms of pixels.

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


resolution

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

When are subforms created?

A) When the main form displays records from a related table B) When two fields are next to each other in a table C) When you have an autonumber field as the primary key D) It can only be created when the form is created

Computer Science & Information Technology

What consist(s) of a series of related instructions that tells the computer what tasks to perform and how to perform them?

A. GUIs B. Storage utilities C. Sharing communities D. Software

Computer Science & Information Technology

In terms of hardware resources needed (number of new processor registers and additional circuitry to generate the physical memory address given a CPU generated address) compare base and limit register solution with a paged virtual memory solution.

What will be an ideal response?

Computer Science & Information Technology