Q. What will happen if you call read() after reading the entire file once?
β
Correct Answer: (B)
Returns empty string
Explanation: The file pointer is at the end after the first read; subsequent reads return an empty string.