Which of the following sentences are true? (Select two answers)
Answer : B, D
What is the expected output of the following code if there is no file named non existing_file inside the working directory?

Answer : B
The first parameter of each method:
Answer : D
The first argument of every class method, including init, is always a reference to the current instance of the class. By convention, this argument is always named self. In the init method, self refers to the newly created object; in other class methods, it refers to the instance whose method was called
Python's built-in function named open () tries to open a file and returns:
Answer : C
Assuming that the code below has been executed successfully, which of the following expressions evaluate to True? (Select two answers)

Answer : A, C
There is a stream named s open for writing. What option will you select to write a line to the stream''
Answer : A
What is true about Python class constructors? (Select two answers)
Answer : A, C