Prutor Python Quiz 9 by anupmaurya June 13, 2021 written by anupmaurya 0 minutes read 833 Welcome to your Prutor Python Quiz 9 If we have a file object as fileobj, then What does the attribute 'closed' will tell on this file obj ? a) tells (True of False) whether theFile is closed or not b) Reads and return ‘something’ c) read a single line from theFile, including the newline character d) modify the file object for theFile so that the next read will be from None In python, _____ method gets the position of file handle while ____ method changes the position of file handle to the specific position. a) seek, tell b) tell, seek c) read, tell d) tell, change None What will be the output of following python code? with open("myfile.txt", "w") as f: f.write("Hello World Python Programming") with open('myfile.txt', 'w+') as f: f.write("Hello") f.seek(0) data = f.readlines() for line in data: words = line.split() print (words) a) ['Hello'] b) ['Hello World Python Programming'] c) ['Hello', 'World', 'Python', 'Programming'] d) Runtime Error None In the readlines() method - a) it returns a string. b) it returns a list of lines. c) an optional parameter sizehint can be used to limit the number of bytes to read from a file. d) Both 2 and 3 None In python, try-except has an optional else clause, which will execute - a) always b) when try clause does not raise exception c) when OSError happens d) All of the above. None Time's up 0 FacebookTwitterPinterestEmail anupmaurya "Hi there, My name is Anup Maurya. I have a passion for programming and previously worked at TCS, one of the best global IT services and consulting companies, as a System Administrator. I also enjoy graphic design. It's a pleasure to have you here." previous post Prutor Python Quiz 2 next post Prutor Python Quiz 4 Leave a Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.