32.
Why are local variable names beginning with an underscore discouraged?

33.
What is the result of 10 // 3 ?

34.
What is the result of the expression 5 // 2 ?

35.
What is the order of precedence in python?
i) Parentheses
ii) Exponential
iii) Multiplication
iv) Division
v) Addition
vi) Subtraction

38.
What does the is operator test for?

39.
What is the value of x after the following code: x = 5; x += 3; ?

40.
What is the type of the result when you add an integer and a floating-point number?