Quiz
Ops
Features
Pricing
Security
About
← Back to home
Question 1 of 15
20:00
What is the primary purpose of `async`/`await` in Python?
To let a program efficiently wait on I/O-bound operations (like network requests) without blocking the entire thread, by cooperatively yielding control during awaits
To run CPU-bound code faster by using multiple CPU cores automatically
To permanently disable the Global Interpreter Lock (GIL)
To convert synchronous functions into compiled machine code