Complete the sentence to describe free space management: <br> Free space management keeps track of {{BLANK_1}} on a storage device.
Free space management keeps track of [1] on a storage device.Free space management is about tracking the free or unused space on a storage device so new files can be stored efficiently.
Complete the sentence: <br> One common method of free space management is the {{BLANK_1}} method, which uses a list to track free blocks.
One common method of free space management is the [1] method, which uses a list to track free blocks.The linked list method keeps a list of free blocks by linking them together, making it easy to find free space.
Fix the error in the statement: <br> The bitmap method uses a {{BLANK_1}} to represent each block's status as free or used.
The bitmap method uses a [1] to represent each block's status as free or used.
The bitmap method uses a single bit for each block: 0 means free, 1 means used (or vice versa), making it efficient to track space.
Fill both blanks to complete the description: <br> In the bitmap method, each {{BLANK_1}} in the bitmap corresponds to a {{BLANK_2}} on the disk.
In the bitmap method, each [1] in the bitmap corresponds to a [2] on the disk.
Each bit in the bitmap represents one block on the disk, indicating if it is free or used.
Fill all three blanks to complete the code snippet for free space management: <br> free_space = {{BLANK_1}}(size) <br> for i in range(size): <br> ย ย ย ย if free_space[{{BLANK_2}}] == 0: <br> ย ย ย ย ย ย ย ย allocate_block({{BLANK_3}})
free_space = [1](size) for i in range(size): if free_space[[2]] == 0: allocate_block([3])
This code creates a list to represent free space, checks each index i, and allocates the block at i if it is free (0).