0
0
Azurecloud~10 mins

Azure Boards for tracking - 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 work item in Azure Boards using Azure CLI.

Azure
az boards work-item create --title "Fix bug" --type [1]
Drag options to blanks, or click blank then click option'
AEpic
BTask
CFeature
DBug
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Task or Feature instead of Bug for defect tracking.
2fill in blank
medium

Complete the code to list all work items assigned to a user in Azure Boards.

Azure
az boards query --wiql "SELECT [System.Id], [System.Title] FROM WorkItems WHERE [System.AssignedTo] = '[1]'"
Drag options to blanks, or click blank then click option'
AActive
BProjectName
Cuser@example.com
DBug
Attempts:
3 left
💡 Hint
Common Mistakes
Using project name or work item type instead of user email.
3fill in blank
hard

Fix the error in the Azure Boards query to filter work items by state.

Azure
az boards query --wiql "SELECT [System.Id] FROM WorkItems WHERE [System.State] = '[1]'"
Drag options to blanks, or click blank then click option'
AResolved
BComplete
CDone
Dresolving
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect or lowercase state names causing query failure.
4fill in blank
hard

Fill both blanks to create a query that selects work items with priority 1 and state Active.

Azure
az boards query --wiql "SELECT [System.Id] FROM WorkItems WHERE [System.Priority] = [1] AND [System.State] = '[2]'"
Drag options to blanks, or click blank then click option'
A1
B2
CActive
DClosed
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing priority numbers or using wrong state names.
5fill in blank
hard

Fill all three blanks to create a work item with title, assigned user, and area path.

Azure
az boards work-item create --title '[1]' --assigned-to '[2]' --area-path '[3]'
Drag options to blanks, or click blank then click option'
AImplement login feature
Buser@example.com
CProjectX\Frontend
DFix bug
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong values for title, email, or area path.