Complete the code to create a new Azure AD user with the specified display name.
az ad user create --display-name [1] --user-principal-name user@example.com --password Pass@word123The --display-name parameter requires the user's full name as a string, so it must be quoted.
Complete the code to add an existing user to a group by specifying the group ID.
az ad group member add --group [1] --member-id 12345678-90ab-cdef-1234-567890abcdef
The --group parameter requires the group's object ID, which is a GUID string.
Fix the error in the command to list all users in a specific group by specifying the correct parameter.
az ad group member list --group [1]The correct parameter is --group and it requires the group's object ID (GUID).
Fill both blanks to create a new group and then add a user to it.
az ad group create --display-name [1] --mail-nickname [2]
The --display-name is the full name with quotes, and --mail-nickname is a short name without spaces.
Fill all three blanks to remove a user from a group using the correct parameters.
az ad group member remove --group [1] --member-id [2] --yes [3]
The --group and --member-id require GUIDs, and --only-show-errors suppresses normal output.