nerdexam
CompTIA

CV0-004 · Question #254

Which of the following types of releases best describes the update made to a code repository production release when it changes from version 1.0 to version 1.1?

The correct answer is C. Minor. Under semantic versioning (SemVer), version numbers follow the format MAJOR.MINOR.PATCH. A change from 1.0 to 1.1 increments the MINOR version, which represents the addition of new backward-compatible functionality - making Option C (Minor) correct. Option A (Alpha) is a…

DevOps fundamentals

Question

Which of the following types of releases best describes the update made to a code repository production release when it changes from version 1.0 to version 1.1?

Options

  • AAlpha
  • BBeta
  • CMinor
  • DMajor

How the community answered

(41 responses)
  • A
    2% (1)
  • C
    93% (38)
  • D
    5% (2)

Explanation

Under semantic versioning (SemVer), version numbers follow the format MAJOR.MINOR.PATCH. A change from 1.0 to 1.1 increments the MINOR version, which represents the addition of new backward-compatible functionality - making Option C (Minor) correct. Option A (Alpha) is a pre-release stage for early internal testing, not a production version type. Option B (Beta) is a pre-release stage for broader testing before general availability, not a version number classification. Option D (Major) would represent a breaking or incompatible change, reflected as a change in the first digit (e.g., 1.0 → 2.0).

Topics

#Software versioning#Release types#DevOps practices#Production releases

Community Discussion

No community discussion yet for this question.

Full CV0-004 Practice