Control Flow Quiz

Complete this assessment with 100% score to master this chapter.

01What is the correct syntax for an 'if' statement in Python?

02Which keyword is used to check another condition if the first 'if' was false?

03What does 'continue' do inside a loop?

04What is the output of: list(range(2, 10, 3))?

05When does the 'else' block on a 'for' loop run?