Earlier Mac operating systems were composed of files with two parts. The first part was the data fork, which consisted of the data, and the ________ fork, which stored the file metadata and associated application information

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


Answer: Resource. A resource fork is basically the equivalent of an Alternate Data Stream in NTFS. Apple has deprecated use of the resource fork, but it can still be found in use. Files containing a resource fork often lose the resource fork when copied to a volume of a different file system such as Windows NTFS.

Computer Science & Information Technology

You might also like to view...

What will be the value of bonus after the following statements are executed?

``` int bonus, sales = 10000; if (sales < 5000) bonus = 200; else if (sales < 7500) bonus = 500; else if (sales < 10000) bonus = 750; else if (sales < 20000) bonus = 1000; else bonus = 1250; ``` a. 750 b. 1250 c. 500 d. 1000

Computer Science & Information Technology

What integer values of y would make the following statement true?

``` (y >= 4) || (y < 8) ``` a. 4, 5, 6, 7 b. all integers c. 4, 5, 6, 7, 8 d. 5, 6, 7

Computer Science & Information Technology

Format Painter is located in the ________ group on the Home tab

A) Clipboard B) Alignment C) Font D) Editing

Computer Science & Information Technology

Usually, you can use images for free if it is for ________ use

Fill in the blank(s) with correct word

Computer Science & Information Technology