Complete the code to list all active projects using gcloud CLI.
gcloud [1] listThe gcloud projects list command lists all active projects you have access to.
Complete the code to set the default project in gcloud CLI.
gcloud config set [1] my-project-idSetting the default project tells gcloud which project to use for commands.
Fix the error in the command to authenticate gcloud CLI with your Google account.
gcloud [1] loginThe correct command to authenticate is gcloud auth login.
Fill both blanks to create a new Compute Engine VM instance named 'my-vm' in zone 'us-central1-a'.
gcloud compute instances [1] my-vm --zone=[2]
Use create to make a new instance and specify the correct zone us-central1-a.
Fill all three blanks to list all VM instances in the project with detailed information and filter by zone 'europe-west1-b'.
gcloud compute instances list --filter="zone:[1]" --format=[2] --project=[3]
Filter by zone europe-west1-b, format output as a table, and specify your project ID.