Q. What will be the value of x in the
following Python expression?
x = int(43.55+2/2)
an example of explicit conversion. It is
evaluated as int(43.55+1) = int(44.55) = 44.
Hence the result of this expression is 44.