Intermediate Vocabulary #async #concurrency #time-adverbs

Time Adverbs in Async/Concurrent IT

5 exercises on time and sequence adverbs that describe execution order, loading strategy, and temporal relationships in concurrent and asynchronous systems.

Key async/concurrent adverb collocations
  • concurrently execute — multiple tasks in progress at the same time
  • sequentially process — one at a time, in order; opposite of concurrently
  • lazily evaluate — compute only when result is needed
  • eagerly load — load upfront at init time; the lazy/eager pair is canonical
  • retroactively applied — effect applied to past data/events
0 / 5 completed
1 / 5
A concurrent system design document states:

"The API server handles up to 500 requests ___ — each request is processed in its own goroutine without blocking others."

Which time/manner adverb describes multiple operations happening at the same moment in parallel?