The beginning of a free space bitmap looks like this after the disk partition is first formatted: 1000 0000 0000 0000
(the first block is used by the root directory). The system always searches for free blocks starting at the lowest numbered block, so after writing file A, which uses 6 blocks, the bitmap looks like: 1111 1110 0000 0000.
Show the bitmap after:
a) File B is written, using 3 blocks
b) File A is deleted.
c) File C is written, using 4 blocks,
d) File B is deleted.
e) File D is written, using 7 blocks.