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…
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)- A2% (1)
- C93% (38)
- D5% (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
Community Discussion
No community discussion yet for this question.