Well done!
You have completed Control Flow and Functions Quiz!
Quiz Question 1 of 5
Consider the following code snippet:
def first_function():
print("Start")
second_function()
print("End")
def second_function():
print("Inside second_function")
first_function()
What is the output of this program?
Choose the correct answer below: