exam questions

Exam PCAP-31-03 All Questions

View all questions & answers for the PCAP-31-03 exam

Exam PCAP-31-03 topic 1 question 110 discussion

Actual exam question from Python Institute's PCAP-31-03
Question #: 110
Topic #: 1
[All PCAP-31-03 Questions]

What is the expected output of the following code if there is no file named non_existing_file inside the working directory?

  • A. 1 2 4
  • B. 2 4
  • C. 1 2 3 4
  • D. 1 3
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Abbribas
1 month, 2 weeks ago
Selected Answer: A
f = open('non_existing_file', 'w'): In write mode ('w'), if the file doesn't exist, it's created. This line succeeds. print(1, end=' '): Executes. Output: 1 s = f.readline(): Reading from a newly created/empty file (opened in 'w' mode) returns an empty string, ''. No error. print(2, end=' '): Executes. Output: 1 2 No IOError occurred, so the except IOError block is skipped. print(3, end=' ') is NOT executed. The else block executes. f.close(): The file is closed. print(4, end=' '): Executes. Output: 1 2 4 Therefore, the final output is 1 2 4.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...