3. Q3: After importing the math library without an alias, how can the log10 function be called on the integer 54?🔗 math.log10.54 math.log10(54) math(log10)(54) math(log10).54 🔗
4. Q4: Write a program that takes user input of an integer and prints half the absolute value of that integer. import math --- x = int(input("Enter an integer: ")) --- absolute_value = math.fabs(x) half = absolute_value / 2 --- print(half) 🔗
5. Q5: Enter the output of the following program or enter “invalid” if the statement would result in an error.🔗 import math print(math.fabs(-2.2)) 🔗