Master technical and career interviews with structured answers—short definition, real examples, pitfalls, and how to answer in 60–90 seconds.
What are service connections in Azure DevOps? Answer: A service connection is a secure link between Azure DevOps and external systems (like Azure, AWS, GitHub, or Docker Hub). Example: If your pipeline needs to deploy co…
What is the purpose of the dotnet build, dotnet test, and dotnet publish commands in pipelines? Answer: dotnet build → Compiles your code and checks for errors. dotnet test → Runs all your unit tests. dotnet publish → Pa…
What is the difference between an organization, project, and repository in Azure DevOps? Answer: Organization: The top-level container (like a company or department). Project: A workspace for a specific product or app. R…
Azure DevOps Microsoft Azure Tutorial · DevOps
What are service connections in Azure DevOps?
Answer:
A service connection is a secure link between Azure DevOps and external systems (like
Azure, AWS, GitHub, or Docker Hub).
Example:
If your pipeline needs to deploy code to Azure App Service, you create an Azure Resource
Manager service connection. It stores credentials securely so the pipeline can deploy
automatically.
Azure DevOps Microsoft Azure Tutorial · DevOps
What is the purpose of the dotnet build, dotnet test, and dotnet
publish commands in pipelines?
Answer:
Example:
In a pipeline:
$(Build.ArtifactStagingDirectory)
The final publish step outputs deployable files like .dll or .zip.
Azure DevOps Microsoft Azure Tutorial · DevOps
What is the difference between an organization, project, and repository
in Azure DevOps?
Answer:
Example:
Organization: ContosoTech
→ Project: MobileApp
→ Repository: ContosoApp-Frontend