(Choose 1 answer)
def printHello():print("Hello")a = printHello()
For the following code, which of the following statements is true?
A. PrintHello() is a function and a is a variable. None of them are objects.
B. Both printHello() and a refer to the same object.
C. PrintHello() and a refer to different objects.
D. Syntax error! You cannot assign function to a variable in Python.
Exit 20