23. Given a = 5, b = 4, c = 2, evaluate the following:
a) a//c
b) a % b
c) b **c
d) b *= c
27. Given the following
var_1 = 2.0
var_2 = "apple"
var_3 = 'orange'
var_4 = 4
Predict the output of the following statements or indicate that
there would be an error.
a) print (var_1)
b) print (var_2)
c) print ("var_3")
d) print (var_1 / var_4)
e) print (var_4 + var_3)
f) print (var_2...