Assuming the existence of a function named 'mystery' that expects two parameters, an integer and a boolean,
in that order, and returns a boolean value, how do you call the function?"
a) mystery(5, True)
b) mystery(True, 5)
c) mystery(False, 10)
d) mystery(10, False)