0
0
Azurecloud~10 mins

Azure DevOps organization and projects - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new Azure DevOps organization using the Azure CLI.

Azure
az devops [1] create --name MyOrg --location eastus
Drag options to blanks, or click blank then click option'
Apipeline
Bproject
Crepo
Dorganization
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'project' instead of 'organization' will create a project, not an organization.
Using 'repo' or 'pipeline' are unrelated to creating an organization.
2fill in blank
medium

Complete the code to create a new project inside an Azure DevOps organization.

Azure
az devops project [1] --name MyProject --organization https://dev.azure.com/MyOrg
Drag options to blanks, or click blank then click option'
Acreate
Bdelete
Clist
Dshow
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'list' will show existing projects but not create a new one.
Using 'delete' will remove a project, which is not the goal.
3fill in blank
hard

Fix the error in the command to list all projects in an Azure DevOps organization.

Azure
az devops project [1] --organization https://dev.azure.com/MyOrg
Drag options to blanks, or click blank then click option'
Alist
Bcreate
Cdelete
Dupdate
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'create' or 'delete' will cause errors or unintended changes.
Using 'update' is for modifying projects, not listing.
4fill in blank
hard

Fill both blanks to set the default Azure DevOps organization and list its projects.

Azure
az devops configure --[1] https://dev.azure.com/MyOrg
az devops project [2]
Drag options to blanks, or click blank then click option'
Aorganization
Bcreate
Clist
Ddelete
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'create' or 'delete' instead of 'list' will not show projects.
Missing the '--organization' flag in configure will cause errors.
5fill in blank
hard

Fill all three blanks to create a new project with a description and visibility in Azure DevOps.

Azure
az devops project create --name [1] --description [2] --visibility [3] --organization https://dev.azure.com/MyOrg
Drag options to blanks, or click blank then click option'
AMyProject
B"Sample project for learning"
Cprivate
Dpublic
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'public' instead of 'private' changes project visibility.
Omitting quotes around description with spaces causes errors.