Well done!
You have completed Control Flow and Functions Quiz!
Quiz Question 1 of 5
Given the following function definitions:
def func1():
return func2()
def func2():
return "Hello"
print(func1())
What will be printed to the console?
Choose the correct answer below: