5 exercises on manner adverbs that describe how operations are performed in DevOps and cloud contexts: the distinctions between "gradually", "automatically", "manually", and "asynchronously" are not interchangeable.
Key deployment adverb collocations
gradually roll out — incremental traffic increase; canary/progressive delivery
automatically scale — no human action; autoscaler triggers it
manually trigger — human initiates; canonical opposite of "automatically"
remotely access — over a network; SSH/VPN/RDP context
asynchronously process — non-blocking; caller does not wait for result
0 / 5 completed
1 / 5
A release engineer explains a deployment strategy:
"We don't switch all traffic at once. Instead, we ___ roll out the new version — starting at 1%, then 5%, then 25%, watching error rates at each step before going to 100%."
Which manner adverb describes a deployment that increases exposure incrementally over time?
Gradually roll out is the canonical collocation. "Gradually" is the standard adverb for deployments that increase traffic or exposure in increments — it is the core vocabulary of progressive delivery, canary deployments, and feature flags. The phrase "gradual rollout" is used in Google, Netflix, and AWS deployment documentation.
Key distinctions:
gradually — the standard deployment term; "gradual rollout" / "gradually roll out" are fixed phrases ✅
carefully — describes manner (with caution), not the incremental nature of the rollout
progressively — semantically similar and technically used ("progressive delivery"), but "gradually" is the more common adverb form in everyday engineering speech
canary release (the mechanism for gradual rollouts)
blue-green deployment (abrupt switch, not gradual)
2 / 5
A Kubernetes documentation excerpt states:
"When CPU utilisation exceeds 70% for more than 2 minutes, the Horizontal Pod Autoscaler will ___ scale the deployment — no human action required."
Which manner adverb describes scaling that happens without human intervention, triggered by the system itself?
Automatically scale is the correct collocation. "Automatically" describes actions that happen without human intervention — it is the core adverb for autoscaling, CI/CD pipelines, self-healing systems, and any infrastructure-as-code operation. The phrase "automatically scale" / "auto-scale" appears throughout Kubernetes, AWS Auto Scaling, and cloud documentation.
Key distinctions:
automatically — without human action; the system does it on its own ✅
dynamically — adapts to changing conditions; "dynamically" focuses on adaptability, not the absence of human action. "Dynamically scale" is also used but means "adapts in real time"; "automatically" is the broader, clearer term for no-human-intervention
instantly — immediately, with no delay; describes speed, not the trigger mechanism
independently — without depending on other components; a different property from automation
Common collocations:
automatically scale up / scale down
automatically deploy
automatically restart
automatically triggered
3 / 5
A runbook instruction reads:
"To restart the worker pool, ___ trigger the restart job via the admin panel — do not use the automated pipeline for this operation."
Which manner adverb emphasises that a human must initiate this action, not a script or system?
Manually trigger is the correct and standard collocation. "Manually" means by human action, as opposed to automatically. This is a critical distinction in operations: manually vs automatically. In runbooks, "manually trigger" signals that this step requires a human to click, type, or initiate — it will not happen on its own.
Key distinctions:
manually — by human action; the canonical opposite of "automatically" ✅
directly — without intermediaries; describes the path, not who initiates it
explicitly — with clear, unambiguous intent; often used with configuration ("explicitly defined"), less common with trigger
personally — by the person themselves; too informal for technical runbooks
The canonical pair:
manually triggered — human initiates
automatically triggered — system initiates
Common collocations:manually run the job, manually deploy, manual intervention required.
4 / 5
A security policy specifies:
"All production server management must be performed ___ — engineers connect to the bastion host over VPN and never have physical access to the datacenter."
Which manner adverb describes access or administration performed over a network without physical presence?
Remotely access is the established collocation. "Remotely" is the standard adverb for accessing systems from a different physical location — over SSH, VPN, RDP, or a web console. It is used in security policies, compliance documents, and operational procedures worldwide.
Key distinctions:
remotely — from a different location, over a network ✅ — the standard term for remote access and remote administration
virtually — in computing, "virtual" usually relates to virtualisation (virtual machines, virtual networks); "virtually access" sounds like accessing a virtual machine, not remote access in general
externally — from outside the network perimeter; more specific than "remotely" (implies external network)
digitally — using digital means; too generic; redundant in IT contexts since everything is digital
Common collocations:
remotely access the server
remote access VPN
remote desktop protocol (RDP)
remote administration
5 / 5
A message queue architecture document explains:
"The email sending service ___ processes messages from the queue — it picks up jobs and sends emails without blocking the main API thread."
Which manner adverb describes processing that occurs in the background, decoupled from the calling thread?
Asynchronously processes is the precise technical collocation. "Asynchronously" means the processing happens outside the main execution flow — the caller does not wait for the result. This is the core concept behind message queues, async/await, promises, callbacks, and event loops. It is the canonical adverb in async programming contexts.
Key distinctions:
asynchronously — decoupled from the caller's execution flow; the caller can continue without waiting ✅
independently — without dependence on other components; describes coupling, not timing relationship
separately — in a different place or thread; descriptive but not the technical term for the async pattern
concurrently — at the same time as other operations; describes parallelism, not the asynchronous pattern specifically (though related)
The pair to learn:
asynchronously process — non-blocking, fire and forget
synchronously process — blocking, the caller waits
Common collocations:process messages asynchronously, asynchronous processing, async handler.