5 exercises — practise how IT verbs like deploy, build, commit, and revert convert directly into nouns without adding a suffix.
0 / 13 completed
1 / 13
A teammate says: "Can you check the deploy from this morning?" Here, "deploy" is being used as a noun. Which sentence uses "deploy" the SAME way (as a countable noun, not a verb)?
"The last deploy broke the staging environment." — here "deploy" is a countable noun (like "the last one", "a deploy") referring to a single deployment event.
Verb-to-noun conversion (zero derivation) is when a verb is used directly as a noun without changing its form — no "-ment", no "-ion", nothing added. This is extremely common in spoken/informal DevOps English:
• "to deploy" (verb) → "a deploy" / "the deploy" (noun) — "kick off a deploy", "the deploy failed" • "to build" (verb) → "a build" / "the build" (noun) — "the build is broken", "grab the latest build" • "to release" (verb) → "a release" / "the release" (noun) — "ship a release", "release notes" • "to revert" (verb) → "a revert" / "the revert" (noun) — "do a revert", "the revert fixed it"
The other options all use "deploy" as a verb: "we deploy" (present simple), "please deploy" (imperative), "are deploying" (present continuous). Only the noun form pairs with an article ("the", "a") or determiner ("this", "that", "the last").
Test: if you can put "the" or "a" directly in front of the word and it still makes sense, it's functioning as a noun.
2 / 13
Which sentence correctly uses "build" as a countable noun referring to a specific compiled artefact?
"This build has three failing tests." — "build" here means a specific compiled/packaged version of the software, a countable noun ("this build", "build #482", "a nightly build").
Why the noun sense matters in IT: "build" as a noun refers to a concrete artefact you can point to, version, or roll back — "build 1.4.2", "the CI build", "a broken build". As a verb, "to build" is the action of compiling/assembling that artefact.
Compare: • Verb: "We build the frontend nightly." (the action) • Noun: "The nightly build failed." (the resulting artefact)
The other three options use "build" as a verb: "we need to build" (infinitive after modal-like phrase), "I will build" (future simple), "they build" (present simple, habitual action).
Related noun-forming pattern: many IT verbs used as nouns describe an EVENT or ARTEFACT produced by that verb: a deploy (event), a build (artefact/event), a commit (artefact — a snapshot), a merge (event), a push (event), a pull (event, informally "do a pull").
3 / 13
Your manager writes in Slack: "Can we do a revert on that PR? It broke prod." What part of speech is "revert" in this sentence, and what does the sentence mean?
"Revert" is a noun here — it follows the light verb "do" and the article "a" ("do a revert"), the same pattern as "do a build", "do a deploy", "do a merge".
The "do a [verb-noun]" pattern is very common in spoken and written IT English. It treats the verb's noun form as a discrete, countable action:
• "do a revert" = perform the action of reverting (undoing a commit/change) • "do a deploy" = perform a deployment • "do a rebase" = perform a rebase • "do a rollback" = perform a rollback
Note: "revert" as a noun is informal/jargon — the "correct" formal noun would be "reversion", but almost no developer says "we performed a reversion." In IT English, the zero-derived noun ("a revert") has effectively replaced the more formal "-ion" noun in everyday usage. This is a good example of how technical communities often favour short, direct noun-verb pairs over dictionary-standard nominalisations.
The sentence itself asks: "Can we undo that pull request's change? It broke production."
4 / 13
Which pair correctly shows the SAME word functioning first as a verb, then as a noun (in that order)?
"We will merge the branches." (verb) / "There was a conflict during the merge." (noun) — correct order: verb first, then the same word used as a noun.
In the first sentence, "merge" follows the modal "will" and takes a direct object ("the branches") — classic verb behaviour. In the second sentence, "merge" follows "the" (article) and "during" (preposition) — classic noun behaviour, referring to the merge event itself.
Common IT verb→noun conversions (zero derivation), verb first then noun in context: • "We push commits daily." → "The last push failed." • "Let's roll back the change." (two words, phrasal verb) → "We need a rollback." (one word, noun) • "I'll commit this fix." → "Check the latest commit." • "They rebase feature branches." → "The rebase took forever."
Option D mixes in "-ing" (gerund, "merging") and "-er" ("merger", which actually means a business combination, not a Git merge!) — those are different word-formation processes (nominalisation via suffix), not zero conversion.
5 / 13
Why do so many IT verbs (deploy, build, commit, merge, push, revert) convert directly into nouns WITHOUT adding a suffix like "-ment" or "-ion", unlike general English (e.g. "develop" → "development", not "a develop")?
Tech culture favours brevity for high-frequency actions. DevOps and software teams talk about deploys, builds, commits, merges, pushes, and reverts dozens of times a day — in standups, Slack, PR descriptions, incident reports. A short zero-derived noun ("a deploy") is faster to say and type than a formal nominalisation ("a deployment", "a reversion").
Why it is NOT ungrammatical: zero derivation (also called "conversion") is a completely standard and productive process in English — it happens outside IT too ("to email" → "an email", "to text" → "a text", "to google" → "a google search"). IT vocabulary simply uses it very heavily because the workflows are fast-paced and repetitive.
Coexistence note: some verbs keep BOTH forms with slightly different registers: • "deploy" (verb) → "a deploy" (informal noun, very common) AND "a deployment" (more formal noun, used in documentation: "deployment pipeline", "deployment strategy") • "commit" (verb) → "a commit" (the standard Git noun — there is no widely used "commitment" equivalent in this sense; "commitment" means something entirely different in general English)
Option C is false — historically these words entered English as verbs (from Latin roots via French) and the noun use is the newer, informal shift; option D is false — the pattern applies to multi-syllable words too (e.g. "migrate" → "a migration" still uses a suffix, but informally teams do say "run the migrate" in some frameworks).
6 / 13
Sarah, a junior developer, sent this Slack message: 'Just deployed the new feature. Let me know if you spot any issues!' Which of the following best describes how 'deploy' is used in this context? It's being used as a countable noun.
Deploy in this scenario refers to the actual act of releasing the new feature. It's being used as a countable noun, just like 'version' or 'build', indicating a discrete unit of software. The incorrect options misinterpret it as an uncountable concept (like 'software') or simply a synonym for 'release'.
7 / 13
You're reviewing a PR and see this comment: 'The build failed on CI. The tests are all red.' Which sentence correctly uses 'build' as a countable noun referring to the compiled artefact itself?
Here, 'build' refers to the specific compiled executable or artifact. 'Rebuild' means to recreate it; 'monitor' describes observing its status, and 'automated' is a process related to building. The correct option uses 'build' as a noun referring to the concrete product of compilation.
8 / 13
During a standup meeting, Mark says: 'I'm working on reverting the changes I pushed last night.' What part of speech is 'revert' in this sentence? It functions as a verb describing an action.
In this context, 'revert' means to undo or reverse changes. It's used as a verb describing the *action* of undoing something that was previously committed. The other options misinterpret 'revert' as a noun (referring to the undone change) or an adjective/adverb.
9 / 13
During a sprint planning meeting, the team lead asks: 'We need to refactor this module. Can someone create a deployment plan?' What is 'deployment' referring to in this context? It's being used as a noun representing a structured approach.
Here, 'deployment' is used as a noun referring to the *plan* itself – a structured approach. The mistake might be assuming it always means the act of deploying code. The key here is recognizing that it's describing the *result* or *strategy*, not the action.
10 / 13
You receive this email from QA: 'The build for version 2.3.1 is consistently failing due to a memory leak. We need to investigate the root cause.' What does 'build' refer to in this sentence? It's being used as a countable noun representing the compiled software package.
In this context, 'build' is a countable noun referring to the *compiled* version of the software – the executable file. Common misconceptions involve thinking it refers to the development process or the testing system. The email focuses on a specific, tangible artifact.
11 / 13
In a Slack conversation regarding a recent bug fix, Alex says: 'I'm going to commit the latest changes. Let me know if you find any issues.' What part of speech is 'commit' used in this sentence? It's being used as a verb describing an action.
Here, 'commit' is used as a verb – meaning to submit the updated code to the version control system. The confusion might arise from thinking it's a noun referring to a feature request or something else entirely. The action of saving changes is what's meant.
12 / 13
Which sentence correctly uses 'merge' as a countable noun referring to the act of combining code? The developers spent three hours merging the features.
In this example, 'merge' is used as a noun representing the *process* of combining code. The sentence describes the act of bringing together changes from different branches. The other options use 'merge' as a verb describing an action.
13 / 13
During a technical discussion, David says: 'We need to push the updated code to the staging environment before we deploy it.' What does 'push' refer to here? It's being used as a verb describing the action of transferring data.
Here, 'push' is used as a verb describing the action of transferring data – specifically, sending the updated code to the staging environment. This contrasts with its use as a noun relating to a button or command. Understanding this distinction is crucial for clear communication within development teams.
This exercise, "Verb-Noun Conversion", tests your understanding of word formation vocabulary and phrasing through 13 multiple-choice questions drawn from real workplace scenarios.
Is this exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
How many questions does this exercise have?
This exercise has 13 questions. Each one presents a realistic sentence or scenario with multiple-choice options and an explanation once you answer.
What happens after I answer a question?
You'll see immediate feedback showing whether your answer was correct, along with a short explanation of why — then a button to move to the next question.
Can I retry the exercise if I get questions wrong?
Yes. Once you reach the results screen, click "Try again" to reset your answers and go through the exercise from the start as many times as you like.
Do I need to create an account to take this exercise?
No account is needed. Your answers are scored in your browser during the session — nothing is saved to a server, so you can jump straight in.
Is my progress saved if I leave the page?
No — progress within an exercise resets if you navigate away or reload. Each exercise is short enough to complete in a few minutes in one sitting.
Who is this Word Formation exercise for?
It's designed for IT professionals and learners who want to sound natural discussing word formation topics in English — useful for meetings, documentation, interviews, and day-to-day communication with English-speaking teams.
How is this different from reading a glossary or blog article?
Exercises like this one are active recall drills — you have to choose the correct term or phrasing yourself, which builds retention faster than passively reading a definition.
Where can I find more Word Formation exercises?
Browse the full Word Formation exercises hub for more practice, or explore other exercise categories covering vocabulary, grammar, interviews, and workplace communication.