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

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

What is the output of the following program if the user enters kangaroo at the first prompt and 0 at the second prompt?

  • A. 1 | Wrong value.
  • B. 1 | Do not divide by zero!
  • C. 1 | 4.0
  • D. 1 | Error.Error.Error.
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
Donny_575
3 weeks, 4 days ago
Selected Answer: C
C. 1 | 4.0 Explanation: >> first_prompt = input(...) #"kangaroo" a = len(first_prompt) # a = 8 >> second_prompt = input(...) # "0" b = len(second_prompt) * 2 # b = 1 * 2 = 2 print(a / b) # 8 / 2 = 4.0
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