Filenames in FAT16 are limited to ________ characters

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


Answer: Eight. This file system supports disk partitions with a maximum storage of 2 GB. File extensions are limited to three characters.

Computer Science & Information Technology

You might also like to view...

Write the syntax of a tcpdump command that captures packets containing IP datagrams between two hosts with IP addresses 10.0.1.11 and 10.0.1.12, both on interface eth1.

What will be an ideal response?

Computer Science & Information Technology

One big difference of screen design from form design is the constant presence of a ________ on the screen.

A) cursor B) title C) command prompt D) voice prompt

Computer Science & Information Technology

Given the following array, create a variable named product that will give the product of 4 * 5.

``` var nums = new Array(3,4,5,6,7,8,-99); ``` a. ``` var fives = new Array(); for (j = 1; j < 11; j++) fives[j] = j + 5; ``` b. ``` var fives = new Array(); for (j = 1; j < 11; j++) fives[j] = j * 5; ``` c. ``` var fives = new Array(); fives[0] = 0; for (j = 1; j < 10; j++) fives[j] = fives[j-1] + 5; ``` d. ``` var fives = new Array(); for (j = 0; j < 11; j++) fives[j] = fives[j] + 1; ```

Computer Science & Information Technology

To select two slides on the Slides tab, click one slide, hold down the ________ key, and then click a second slide

A) [Ctrl] B) [F2] C) [F5] D) [Alt]

Computer Science & Information Technology