Consider a RAID Level 4 that performs block-level striping o…

Consider a RAID Level 4 that performs block-level striping over 8 disks for data and uses 1 (additional) disk for parity blocks. How many total block reads and block writes are needed in the most efficient way of writing a large file with 3 blocks (assuming they are perfectly striped over a row across 3 disks for data)?

Assume a computer system has 1GB total physical memory, spli…

Assume a computer system has 1GB total physical memory, split evenly between Virtual Memory and File System Buffer cache, i.e., 0.5GB each. The page replacement algorithm uses Enhanced FIFO with second chance, and the buffer cache replacement algorithm uses FIFO. Assume the system has no other process running. What is the total amount of disk I/O that will result from running the following code segment:   // Machine has 1GB RAM, file has 0.5 GB #define LENGTH 512*1024*1024/4 FileDescriptor fd; float* temp; fd = open(“pathname”, “READ/WRITE”); mmap(fd, offset, temp, LENGTH);   // replacing read() for (i=0, i