Question
A program must iterate over names and scores in parallel. Which built-in function is designed for this?
Select an option. Your answer will be checked instantly.
Correct Answer: D. `zip`
Explanation:
`zip` combines elements from multiple iterables position by position. It can produce name-score pairs for parallel processing.
Leave a Reply