A two-parameter lambda function raising its first parameter to the power of the second parameter should be declared as:
Assuming that the snippet below has been executed successfully, which of the following expressions will evaluate to True? (Select two answers)
string = 'SKY' (:: -1)
string = string (-1)
Which line can be used instead of the comment to cause the snippet to produce the following expected output? (Select two answers)
Expected output:
1 2 3
Code:

A file name like this one below says mat: (select three answers)
services. cpython-36.pyc
Assuming that the code below has been placed inside a file named code.py and executed successfully, which of the following expressions evaluate to True? (Select two answers)

How many elements will the list1 list contain after execution of the following snippet?
Assuming that the following code has been executed successfully, select the expressions which evaluate to True (Select two answers)

Which one of the platform module functions should be used to determine the underlying platform name?
What will be the value of the i variable when the while e loop finishes its execution?

What would you use instead of XXX if you want to check whether a certain ‘ key' exists in a dictionary called diet? (Select two answers)
II
if XXX:
print("Key exists")
Which of the following expression evaluate to True? (Select two answers)
A)

B)

C)

D)

Assuming that the following code has been executed successfully, select the expressions which evaluate to true.
(Select two answers.)

Assuming that the following code has been executed successfully, selected the expression which evaluate to True (Select two answers)

You are going to read just one character from a stream called s. Which statement would you use?
Assuming that the code below has been executed successfully, which of the following expressions will always evaluate to True? (Select two answers)
import random
v1 = random. random()
v2 = random. random()
What is the expected behavior of the following code?
x - 3 % 1
y -1 if x > else 0
print (y)
Assuming that the following snippet has been successfully executed, which of the equations are False? (Select two answers)
