What is the expected output of the following code?
a
c
an exception is raised
b
B
correct answer: B. c
mytu = ('a','b','c') m = tuple(map(lambda x:chr(ord(x) +1), mytu)) print (m[-2]) print (m)