Which of the following would NOT be classified as a graphic object?

a. pictures and clip art
b. charts
c. shapes and lines
d. text files


Answer: d. text files

Computer Science & Information Technology

You might also like to view...

Which of the following enables you to click an item when using a touchscreen?

A) Slide right B) Press and hold for a few seconds C) Touch the item with two fingers D) Tap the item

Computer Science & Information Technology

In UNIX, swapping uses a round robin memory-management policy.

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

Computer Science & Information Technology

A system can be considered completely secure once it passes an IT audit.

a. true b. false

Computer Science & Information Technology

Consider a class hierarchy that includes a class called Vehicle, with subclasses called Car and Airplane. The Vehicle class has a method called getMaxSpeed, which is overridden in the Car class. The getMaxSpeed of the Vehicle class returns 760 mph, while the getMaxSpeed method of the Car class is overridden to return 150 mph. What is the output of the following snippet of code? Explain your answer.

What will be an ideal response? ``` Vehicle v = new Car(); System.out.println(v.getMaxSpeed() + “ mph”); ```

Computer Science & Information Technology