When the ________ setting is on, any change made to a dimension—either width or height—of a picture, automatically adjusts the other dimension as well

A) Dynamic
B) Proportional
C) Monospaced
D) Lock aspect ratio


D

Computer Science & Information Technology

You might also like to view...

An IT manager is considering an anti-spam solution. Because one of the primary concerns is e-mail server performance, which solution can be eliminated from consideration?

a. Appliance b. Outsourced c. Server-based d. Client-based

Computer Science & Information Technology

Which of the following is not a disadvantage of JAD sessions?

A) JAD requires a commitment of a large block of time from the users. B) If the preparation for a JAD session is inadequate, it may result is a less than satisfactory design. C) Only one or two users have input into a JAD session. D) The organizational culture may not support a JAD session.

Computer Science & Information Technology

Consider the function definition and array declarations. Which are incorrect calls to the function make_2? Why?

(In considering this code, you are to ignore the a) b), and so on, at the start of the lines, and consider that this code is to be embedded in a complete and correct program.) ``` void make_2 ( int a[], int size ) { for (int i = 0; i < size; i++ ) a[i] = 2; } int array1[20]; ``` a) ``` make_2( array, 30 ); ``` b) ``` make_2( array, 10 ); >>>>>replace array with array1 two places ``` c) ``` "Hey, make_2, come change array1. Its size is 20." //A declaration for parts e) through h). int array2[50]; ``` d) ``` make_2( array2, 50 ); ``` e) ``` make_2( array2[5],50 ); ```

Computer Science & Information Technology

A Range name can contain up to 1000 characters but it must begin with a number

Indicate whether the statement is true or false

Computer Science & Information Technology