An MS-DOS file name is composed of __________.

a. the name itself
b. an optional extension
c. neither A nor B
d. both A and B


d. both A and B

Computer Science & Information Technology

You might also like to view...

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

To set preferences for importing Photoshop documents in Windows, click ____ on the Menu bar, click Preferences, click the PSD File Importer Category, and then select how you want Flash to import images, text, and shapes.

A. File B. Import C. Edit D. Manage

Computer Science & Information Technology

Describe a predictive site survey.

What will be an ideal response?

Computer Science & Information Technology

Round the following values up at the places noted.

77.1 at tens place

Computer Science & Information Technology