PCAP Exam QuestionsBrowse all questions from this exam

PCAP Exam - Question 105


What is the expected output of the following code?

Show Answer
Correct Answer: B

B

Discussion

2 comments
Sign in to comment
macxszOption: B
May 4, 2022

correct answer: B. c

Jos015Option: B
Nov 7, 2023

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