If you want to select files that are not listed contiguously, hold down the ____ key while you select each file.

A. Ctrl
B. Alt
C. Shift
D. Fn


Answer: A

Computer Science & Information Technology

You might also like to view...

You later decide that you want to add text to the photograph. You type in some text with the bounding box tool but quickly realize that the text takes up too much space on your photograph. What do you do to fix this problem?

a. Click the handles to reset the bounding box. b. Drag the handles to resize the bounding box. c. Hit ESC to cancel the effect. d. Rotate the bounding box.

Computer Science & Information Technology

To declare an interface named A with a generic type, use

a. public interface A { ... } b. public interface A { ... } c. public interface A(E) { ... } d. public interface A(E, F) { ... }

Computer Science & Information Technology

What is the difference between the ISO version of HDLC and the Cisco version of HDLC that is used, by default, on all serial interfaces?

A) Type field B) Protocol field C) Authentication support D) Optimized header E) Encryption support

Computer Science & Information Technology

Find all students who have taken more than ve classes in the mathematics department.

Use the following partially dened schema to answer the queries below.

CREATE TABLE Student AS
Id INTEGER,
Name CHAR(20),
...
Transcript TranscriptType MULTISET
CREATE TYPE TranscriptType
Course REF(CourseType) SCOPE Course,
...
Grade CHAR(2)
The type CourseType is defined as usual, with character string attributes such as CrsCode, DeptId, etc.

Computer Science & Information Technology