What will be the value of the i variable when the while e loop finishes its execution?

A.
1
B.
0
C.
2
D.
the variable becomes unavailable
What is the expected output of the following snippet?

A.
3
B.
1
C.
2
D.
the code is erroneous
What is true about Python class constructors? (Choose two.)
A.
there can be more than one constructor in a Python class
B.
the constructor must return a value other than None
C.
the constructor is a method named __init__
D.
the constructor must have at least one parameter
Assuming that the following piece of code has been executed successfully, which of the expressions evaluate to True? (Choose two.)

A.
isinstance (obj_b,A)
B.
A.VarA == 1
C.
obj_a is obj_aa
D.
B.VarA == 1
Assuming that the code below has been executed successfully, which of the expressions evaluate to True? (Choose two.)

A.
len(Class.__dict__) == 1
B.
'data' in Class.__dict__
C.
'var' in Class.__dict__
D.
'data' in Object.__dict__