When using Mac OS X, what gesture can be used to show the Launchpad?

A. secondary click
B. pinch
C. swipe
D. slide


Answer: C

Computer Science & Information Technology

You might also like to view...

What does it mean for a class to be Iterable?

What will be an ideal response?

Computer Science & Information Technology

If Overtype mode is on in Word 2010, click the ________ button on the ________ to change it back to Insert mode

A) Overtype; Review tab B) Overtype; Status bar C) Insert; Status bar D) Insert; Home tab

Computer Science & Information Technology

Which of the following creates the string of the numbers from 1 to 1000 most efficiently?

a. String s; for (int i = 1; i <= 1000; i++) s += i; b. StringBuilder sb = new StringBuilder(10); for (int i = 1; i <= 1000; i++) sb.append(i); String s = new String(sb); c. StringBuilder sb = new StringBuilder(3000); for (int i = 1; i <= 1000; i++) sb.append(i); String s = new String(sb); d. All are equivalently efficient.

Computer Science & Information Technology

Unlike the Name property that must not contain spaces, the ________ property in Visual Basic allows multiple words

Fill in the blank(s) with correct word

Computer Science & Information Technology