5 exercises — deployment runbooks are written in concise, precise language. Each phrasal verb in a runbook step has a specific technical meaning that cannot be replaced with a generic synonym.
Runbook phrasal verbs covered
spin up an environment — launch new cloud resources from scratch
roll back to a version — revert to a previous stable deployment
cut over to new infrastructure — make the final irreversible switch
tear down an environment — permanently destroy all provisioned resources
hand off responsibility — formally transfer ownership to another team/person
0 / 10 completed
1 / 10
Deployment runbook — Step 2:
"___ a staging environment in eu-west-1 using the terraform/staging module. Wait for all health checks to pass before proceeding."
Which phrasal verb belongs in this step?
"Spin up" is the standard DevOps phrasal verb for launching a new cloud environment, VM, container, or service instance. It implies bringing something into an active, running state from nothing. Usage: "spin up a container", "spin up an EC2 instance", "spin up a new cluster", "how long does it take to spin up?". You will see it in Terraform modules, Kubernetes manifests, CI/CD pipeline docs, and runbooks. "Start up" is intelligible but less idiomatic in cloud/infrastructure context (used more for applications or physical machines). "Build up" is wrong — it means to increase gradually, not to initialise. The opposite of "spin up" is "spin down" (stop/deallocate) or "tear down" (destroy completely).
2 / 10
Deployment runbook — Step 6:
"Monitor error rates on the /checkout endpoint for 10 minutes. If 5xx errors exceed 2%, immediately ___ ___ v3.4.2 and page the on-call engineer."
Which phrasal verb correctly fills this rollback instruction?
"Roll back to" is the correct term for reverting a deployment to a previous version. It is the standard phrasal verb in incident runbooks, deployment pipelines, and SRE documentation. Usage: "roll back to the previous release", "the rollback took 3 minutes", "trigger an automatic rollback", "roll back if error rate exceeds threshold". The noun form is also used: "initiate a rollback", "the rollback was successful". "Fall back on" means to rely on a backup plan — semantically related but not the DevOps term. "Step back to" and "back off to" are not used in this technical sense. Learn the set: trigger / initiate / perform / execute a rollback, roll back to version X.
3 / 10
Deployment runbook — Step 9:
"Once both the new and old services pass health checks simultaneously, ___ ___ the new infrastructure. Decommission the old pods only after traffic confirms stability."
Which phrasal verb means "make the final switch from old to new system"?
"Cut over" is the specialist operations term for the moment of switching from an old system to a new one — the final, irreversible transition. It is commonly used in infrastructure migrations, database migrations, and major deployments. Usage: "cut over to the new VPC", "the cutover is scheduled for 02:00 UTC", "blue-green cutover", "DNS cutover". The noun form "cutover" (one word) is also widely used: "the cutover window is 30 minutes". This is different from "switch over" (less technical, more general) or "scale over" (not a standard term). In blue-green deployments, the cutover is the point where the load balancer routes 100% of traffic to the new (green) environment.
4 / 10
Deployment runbook — Step 11:
"After all validation checks pass and the new service has been stable for 30 minutes, ___ ___ the staging environment to avoid unnecessary running costs."
Which phrasal verb means "permanently destroy and remove all resources"?
"Tear down" means to completely destroy and remove a provisioned environment — not just stopping it, but deleting all resources: servers, databases, networking config, DNS entries. It is the standard term in IaC (Infrastructure as Code) workflows. Terraform users will recognise it from terraform destroy, which is literally "tearing down the stack". Usage: "tear down the demo env", "the teardown script runs on PR close", "schedule a teardown after the sprint". Compare: "spin down" = stop/deallocate a running resource but keep it recoverable (opposite of "spin up"). "Tear down" is permanent. "Clean up" = remove leftover artifacts, temp files — not infrastructure. "Break down" means to fail or decompose — never used for infrastructure removal.
5 / 10
Deployment runbook — Step 12:
"___ monitoring responsibilities ___ the on-call engineer. Provide them with the deployment summary, the rollback procedure link, and your Slack handle for escalation."
Which phrasal verb best describes transferring responsibility?
"Hand off" is the standard operational and business phrasal verb for formally transferring a responsibility, task, or duty to another person or team. The noun form "handoff" (or "handover" in British English) is just as common: "the handoff document", "the on-call handoff", "handoff meeting". Usage: "hand off the incident to the SRE team", "prepare a handoff note", "the deployment handoff checklist". This is the exact term used in: incident management (handing off P1 incidents between shift teams), sprint ceremonies (handing work to QA), and runbooks. "Pass on" is correct English but sounds less formal and operational. "Give over" is British English for surrendering control (different connotation). "Send across" is not used in this sense.
6 / 10
Code Review Comment: 'The deployment script seems to be failing to rollback the database schema. I'm seeing a conflict with the latest changes.' Which phrasal verb best describes this situation?
Rollback implies undoing changes, reversing them to a previous state. 'Revert' is often used for code commits but doesn't fit the context of a deployment failure. 'Recover' and 'Restore' suggest fixing something that's broken, while 'replace' refers to substituting one thing with another – neither accurately describes the situation described in the comment.
7 / 10
Slack Message from Alex (DevOps): 'Hey team, we're seeing intermittent slowdowns on the production API. The logs indicate a potential issue with the new caching layer implementation. I'm going to debug it and investigate.' Which phrasal verb is most appropriate in this context?
Debug means to systematically find and fix errors or problems. It's a common technical term for investigating issues within a system, often involving detailed analysis. 'Isolate' refers to separating components, 'ignore' is the opposite of what's needed here, and 'eliminate' implies removing a problem entirely – both are incorrect in this scenario.
8 / 10
PR Description: 'This PR introduces a new feature that requires deploying the updated frontend assets. After deployment, we'll need to verify its functionality across multiple browsers and devices.' Which phrasal verb best conveys this action?
Validate means to check that something conforms to specified requirements or standards. It's the most precise term for confirming the functionality of a deployed feature after it has been released. 'Evaluate' is more general, and 'assess' and 'confirm' are less specific about the process of checking the new code.
9 / 10
Standup Update from Ben (Developer): 'Yesterday, I finished deploying the latest version of the user authentication service to staging. Now, I need to check up on it and ensure everything's running smoothly.' Which phrasal verb is most suitable in this context?
Check up on means to make sure that something is still working correctly and that there are no problems. It's a conversational way of saying 'monitor' or 'verify'. While 'monitor' is related, 'check up on' implies a more active, informal assessment. 'Inspect' and 'test' are too formal for this setting.
10 / 10
API Response (Partial): `{"status": "error", "code": 503, "message": "Service unavailable - Deployment in progress. Please try again later."}`. The support team is responding to a user report. What phrasal verb does the message imply needs to be done?
Restart means to power something off and then back on again. This is often necessary after a deployment where services might be temporarily unavailable. 'Reconfigure' refers to changing settings, 'reset' implies returning to a default state, and 'refactor' relates to code restructuring – none of these accurately reflect the message's intent regarding the ongoing deployment.
What will I practise in "Deployment Runbook Phrasal Verbs"?
This module focuses on Phrasal Verbs — real workplace phrasing you'll use on the job. It contains 10 scenario-based multiple-choice questions with instant feedback.
Is this exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is free to use with no account or sign-up required.
How many questions does this exercise have?
This module includes 10 questions. Each one gives an immediate right/wrong result plus a full explanation of the correct phrasing.
What happens if I answer a question incorrectly?
You'll see the correct answer highlighted straight away, along with a plain-English explanation of why it's right and why the other options don't fit — mistakes are part of the learning here.
Can I retry the exercise if I want a better score?
Yes — use the 'Try again' button on the results screen to reset your score and go through the questions again. There's no limit on attempts.
Who is this Phrasal Verbs exercise for?
It's aimed at IT professionals with working English who want to sound more natural and precise around phrasal verbs — useful whether you're preparing for real conversations at work or just building confidence with the vocabulary.
Do I need an account to track my progress?
No account is needed. Your progress through the exercise is tracked locally in your browser for the current session, and you can replay the module at any time.
How is this different from reading a blog article?
This exercise is an interactive drill that tests and reinforces specific phrasing through multiple-choice questions with instant feedback, while blog articles explain concepts and vocabulary in prose. The two work well together.
Where can I find more Phrasal Verbs exercises?
See the Phrasal Verbs hub for more modules like this one, or browse the full Exercises page for other IT-English topics.
Can I complete this exercise on my phone?
Yes — every exercise on CoderSlingo is fully responsive and works on phones and tablets, so you can practise anywhere.