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 65 discussion

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

What is the expected output of the following code if existing_file is the name of a file located inside the working directory?

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

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: C
The try block executes successfully as the file exists and is opened in write mode. The code prints 1 from the try block and 3 from the else block, resulting in the output 1 3.
upvoted 1 times
...
Dave304409
1 year ago
Selected Answer: C
is correct
upvoted 2 times
...
DKAT2023
1 year, 1 month ago
Selected Answer: C
C is correct
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 ...