Microsoft
AZ-400 · Question #458
You use GitHub to host container packages that use Semantic Versioning (SemVer). You have an app named App1. The current version of App1 is 11.2.0. You change the code of App1 to fix a bug that was in
The correct answer is B. 11.2.1. Given a version number MAJOR.MINOR.PATCH, increment the: - MAJOR version when you make incompatible API changes - MINOR version when you add functionality in a backward compatible manner - PATCH version when you make backward compatible bug fixes
Submitted by paula_co· Mar 6, 2026Design and implement build and release pipelines
Question
You use GitHub to host container packages that use Semantic Versioning (SemVer). You have an app named App1. The current version of App1 is 11.2.0. You change the code of App1 to fix a bug that was introduced in version 10.5.1. Which version number should you assign to the release?
Options
- A10.5.1-PATCH
- B11.2.1
- C10.5.2
- D10.6.0
How the community answered
(55 responses)- A5% (3)
- B82% (45)
- C2% (1)
- D11% (6)
Explanation
Given a version number MAJOR.MINOR.PATCH, increment the: - MAJOR version when you make incompatible API changes - MINOR version when you add functionality in a backward compatible manner - PATCH version when you make backward compatible bug fixes
Community Discussion
No community discussion yet for this question.