M Mr. Dubey π Coach β 103.11K Points π Operating System Architecture Q. What is stored in logfile as per below mentioned code if we execute ./a.out > logfile?nt main() { int fd; close(1); fd = open(“logfile”,O_RDWR, 0744); write(fd, “Hello”, 5); printf(“World\n”); return 0; } (A) hello (B) helloworld (C) world (D) none ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) helloworld