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

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

What is the expected output of the following code?

mytu = ('a', 'b', 'c')
m = tuple(map(lambda x: chr(ord(x) + 1), mytu))
print(m[-2])

  • A. an exception is raised
  • B. a
  • C. b
  • D. c
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
Dave304409
4 months ago
Selected Answer: D
is correct print(m) ('b', 'c', 'd') print(m[-2]) c
upvoted 1 times
...
JeyTlenJey
4 months ago
Correct : D mytu = ('a','b','c') m = tuple(map(lambda x: chr(ord(x) + 1),mytu)) print(m) #('b','c','d') print(m[-2]) #c
upvoted 1 times
...
kstr
4 months, 2 weeks ago
D right answer
upvoted 1 times
...
DKAT2023
4 months, 2 weeks ago
Selected Answer: D
D is the 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 ...