exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 5 question 273 discussion

Actual exam question from Python Institute's PCEP-30-02
Question #: 2
Topic #: 5
[All PCEP-30-02 Questions]

What is the expected behavior of the following program?

  • A. The program will cause a ValueError exception and output a default error message.
  • B. The program will cause a SyntaxError exception.
  • C. The program will cause a ZeroDivisionError exception and output a default error message.
  • D. The program will cause a ValueError exception and output the following message: Too bad...
  • E. The program will raise an exception handled by the first except block.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
akumo
1 month ago
Selected Answer: B
except (ValueError,ZeroDivisionError):
upvoted 1 times
...
CristinaDev
6 months, 3 weeks ago
SyntaxError: default 'except:' must be last So B is the correct answer
upvoted 2 times
...
ellene
10 months, 1 week ago
C. The program will cause a ZeroDivisionError exception and output a default error message. So, the previous selection "B. The program will cause a SyntaxError exception" is incorrect, and the correct choice should be "C. The program will cause a ZeroDivisionError exception and output a default error message."
upvoted 1 times
Donny_575
3 weeks, 4 days ago
The answer is B: Step 1: Check for Syntax Errors break is used outside of a loop, which is illegal in Python. Python will raise a SyntaxError before it even tries to run anything else in the try block. Even though print(5 / 0) would cause a ZeroDivisionError, it never runs because the break statement is invalid syntax at the parser level.
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago