Multiple Choice
When a Python program begins execution, it creates three xe "file object:standard"xe "standard file objects"standard file objects: sys.stdin-the standard input file object,
sys.stdout-the standard output file object, and
sys.stderr-the standard error file object.
You must import the sys module if you need to refer to these objects explicitly in your code, but this is rare. Which of the following statements is false?
A) Though these are considered file objects, they do not read from or write to files by default.
B) The input function implicitly uses sys.stdin to get user input from the keyboard.
C) Function print implicitly outputs to sys.stdout, which appears in the command line.
D) Python implicitly outputs program errors and tracebacks to sys.stdout.
Correct Answer:

Verified
Correct Answer:
Verified
Q8: Which of the following statements are false?<br>A)
Q9: Which of the following statements a), b)
Q10: Which of the following statements is false?<br>A)
Q11: Which of the following statements is false?<br>A)
Q12: Which of the following statements a), b)
Q14: b. When there are except handlers, program
Q15: Which of the following statements is false?<br>A)
Q16: The json module enables you to convert
Q17: If the contents of a file should
Q18: Which of the following statements is false?<br>A)