Async IO in Python: A Complete Walkthrough Quiz

Interactive Quiz ⋅ 8 Questions
By Martin Breuss

In this quiz, you’ll test your understanding of Async IO in Python. Async IO is a concurrent programming design that’s received dedicated support in Python, evolving rapidly from Python 3.4 onward.

You’ll cover asynchronous input/output (async IO), the keywords async and await, and Python’s built-in asyncio module.

The quiz contains 8 questions and there is no time limit. You’ll get 1 point for each correct answer. At the end of the quiz, you’ll receive a total score. The maximum score is 100%. Good luck!

Related Resources

Course

Hands-On Python 3 Concurrency With the asyncio Module

Learn how to speed up your Python 3 programs using concurrency and the asyncio module in the standard library. See step-by-step how to leverage concurrency and parallelism in your own programs, all the way to building a complete HTTP downloader example app using asyncio and aiohttp.

advanced python

Tutorial

Async IO in Python: A Complete Walkthrough

This tutorial will give you a firm grasp of Python’s approach to async IO, which is a concurrent programming design that has received dedicated support in Python, evolving rapidly from Python 3.4 through 3.7 (and probably beyond).

intermediate python