42.
What is the data type of the result of 10 / 2 ?

43.
In python we do not specify types, it is directly interpreted by the compiler, so consider the following operation to be performed.
objective is to make sure x has a integer value, select all that apply (python 3.xx)
>>>x = 13 ? 2

45.
What is the purpose of the complex() function in Python?

47.
What is the result of (3 + 4j) * (1 - 2j) ?

49.
What will be the output of the following Python code snippet?
def example(a):
    a = a + '2'
     a = a*2
    return a
>>>example("hello")

50.
What is the result of float("3.14") ?