Complete the code to set the project ID in the gcloud CLI.
gcloud config set project [1]The command gcloud config set project requires the actual project ID as the argument.
Complete the command to create a new GCP project with the given project ID.
gcloud projects create [1]The gcloud projects create command requires the project ID as a positional argument.
Fix the error in the command to list all projects.
gcloud [1] projects listThe correct command to list projects is gcloud projects list.
Fill both blanks to set the billing account for a project.
gcloud billing projects link [1] --billing-account=[2]
The command gcloud billing projects link [PROJECT_ID] --billing-account=[BILLING_ACCOUNT] links a billing account to a project.
Fill all three blanks to assign the 'viewer' role to a user on a project.
gcloud projects add-iam-policy-binding [1] --member='user:[2]' --role='[3]'
This command adds the IAM policy binding to give the user the viewer role on the project.