The NTFS file system holds a substantial amount of metadata in the $MFT file. Which of the following is not stored in this metafile?

a. Create time
b. File name
c. Security descriptor
d. Author's name

d.

Computer Science & Information Technology

You might also like to view...

The most common technique for using an appropriate synchronization mechanism to serialize the accesses to prevent errors is to acquire a _______ on the shared file, ensuring that each process has appropriate access in turn.

A. lock B. code injection C. chroot jail D. privilege escalation

Computer Science & Information Technology

There exists a data type Date with member function Increment that increments the current Date object by one. The ++ operator is being overloaded to postincrement an object of type Date. Select the correct implementation:

a. Date Date::operator++(int) { Date temp{*this}; Increment(); return *temp; } b. Date Date::operator++(int) { Increment(); Date temp{*this}; return temp; } c. Date Date::operator++(int) { Date temp{*this}; return this; temp.Increment(); } d. Date Date::operator++(int) { Date temp{*this}; Increment(); return temp;

Computer Science & Information Technology