A hard disk partition is formatted with a file system based on chained allocation, using an allocation table. The partition formatting considered a block (cluster) size of 4096 bytes. A program executed on this computer creates a file in this partition and writes the file data according to the code snippet below. As a result, the created file contains ____ bytes and occupies ____ bytes in the file system's data area. ```c ... 05 char dado; ... 25 for(i=0;i<1024;i++) 27 write(fd, &dado, 1); 28 close(fd); ``` Select the alternative that correctly and respectively fills in the blanks in the text above. | Snowflake SnowPro Core Quiz - LeetQuiz