Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
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 37 discussion

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

What is the expected behavior of the following code?
my_list = [i for i in range(5)]
m = [my_list[i] for i in range(4, 0, -1) if my_list[i] % 2 != 0] print(m)

  • A. the code is erroneus and it will not execute
  • B. it outputs [4, 2, 0]
  • C. it outputs [3, 1]
  • D. it outputs [1, 3]
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
Dave304409
4 months, 3 weeks ago
Selected Answer: C
C is correct
upvoted 1 times
...
DKAT2023
4 months, 4 weeks ago
c is correct
upvoted 1 times
...
b4779c5
5 months ago
it outputs [3,1]
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 ...