Rohan opened the file “myfile.txt” by using the following syntax. His friend told him few advantages of the given syntax. Help him to identify the correct advantage. with open ("myfile.txt", "a") as file_object:
1.In case the user forgets to close the file explicitly the file will closed automatically.
2. file handle will always be present in the beginning of the file even in append mode.
3. File will be processed faster
4.None of the above