Problem The beginning of a free space bitmap after the disk partition is first formatted looks like this: 1000 0000 0000 0000 (the first block is used by the root directory). Using a contiguous allocation approach, the system always searches for free blocks starting at the lowest-numbered block, so after writing file A, which uses five blocks, the bitmap looks like this: 1111 1100 0000 0000 0000. Show the bitmap after each of the following additional actions: a) File B is written, using six blocks b) File A is deleted c) File C is written using 7 blocks d) File B is deleted e) File D is written using 4 blocks
Previous question