PCAP-31-03 Exam Question 1
Which of the following lines of code will work flawlessly when put independently inside the add_new () method in order to make the snippet's output equal to [0, 1, 21 ? (Select two answers)


PCAP-31-03 Exam Question 2
What is the expected behavior of the following code?

It will

It will
PCAP-31-03 Exam Question 3
What is the expected output of the following code?
def foo(x,y,z):
return x(y) - x(z)
print{f00(lambda x: x % 2, 2, 1) )
def foo(x,y,z):
return x(y) - x(z)
print{f00(lambda x: x % 2, 2, 1) )
PCAP-31-03 Exam Question 4
If you need to serve two different exceptions called Ex1 and Ex2 in one except branch, you can write:
PCAP-31-03 Exam Question 5
What is the expected behavior of the following code?


