To create a ____, simply right-click a folder, select New, and then select Folder.

A. library
B. subfolder
C. Favorite
D. file


Answer: B

Computer Science & Information Technology

You might also like to view...

(What Does This Program Do?) What does the following app display?

``` // Mystery3.cs using System; class Mystery3 { static void Main() { int row = 10; int column; while (row >= 1) { column = 1; while (column <= 10) { Console.Write(row % 2 == 1 ? "<" : ">"); ++column; } --row; Console.WriteLine(); } } } ```

Computer Science & Information Technology

An animation that has been set to ____ will play continuously.

A. Build B. Looping C. Once D. Chain

Computer Science & Information Technology

A chart layout may include a number of chart elements such as title, legend, and labels for the columns

Indicate whether the statement is true or false

Computer Science & Information Technology

____________________ specifies the amount of white space between lines of text.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology