?When you drag a bulleted item in the Outline pane, a _____ indicates where the item will be placed.

A. ?horizontal line
B. ?shaded box
C. ?green dot
D. ?magnifying glass


Answer: A

Computer Science & Information Technology

You might also like to view...

What will be the output of the following program?

import java.util.HashMap; import java.util.Hashtable; import java.util.Map; public class Program { public static void main(String... args) { String k1 = "key1"; Map map = new Hashtable(); map.put(k1, "value1"); map.put(null, "value2"); System.out.println(map.get(k1)); System.out.println(map.get(null)); } } a. value1 value2 b. A NullPointer Exception will be thrown. c. value1 value2 d. value1 null

Computer Science & Information Technology

What is the Big-O of a recursive bubble sort?

a. O(n^2) b. O(n log n) c. O(n) d. O(n^3)

Computer Science & Information Technology

if-else examples can also be called ____, because they contain the action taken when the tested condition is true and the action taken when it is false.

A. do loops B. repetition C. single-alternative selections D. dual-alternative selections

Computer Science & Information Technology

On a flowchart, if you have a condition leading to statements on the true branch (or on both the true and false branches), but the flowline does not go back to the condition, it is a While loop.

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

Computer Science & Information Technology