To discover the size of the graphics file, you should select the _____ option from the drop-down menu.

A. Properties
B. Image size
C. Image properties
D. Show picture


Answer: A

Computer Science & Information Technology

You might also like to view...

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

1. Errors may occur when attempting to read data that is not of an appropriate type. 2. It is impossible to predict the sequence of random numbers produced by a random number generators. 3. The objective of encapsulation is to increase the transparency of how objects are implemented. 4. The public interface of a well-defined data type provides a complete set of public methods for interacting with the object while hiding the implementation details of the data type.

Computer Science & Information Technology

What will be output from the following code:

``` public void t e s t 7 ( ) { int x = 1 2 ; int y = 0 ; while ( x < 10 j j y < 1) { x = x + 1 ; y = y + 1 ; System . out . p r i n t l n ( x + " , " + y ) ; } } ```

Computer Science & Information Technology

Let modify be a public member function for the class USStates which modifies the attributes of one object of the class. To change the ith object of the class requires the following call to modify:

a. modify (USStates); b. modify (USStates[i]); c. modify (stateArr); d. stateArr.modify (USStates[i]; e. stateArr[i].modify ( );

Computer Science & Information Technology

A record is another term for a(n) ____.

A. tuple B. field C. attribute D. property

Computer Science & Information Technology