Complete the code to create a virtual machine instance in GCP using the correct command.
gcloud compute instances create my-instance --zone=[1]The zone europe-west1-b is a valid GCP zone for creating instances.
Complete the code to list all storage buckets in your GCP project.
gsutil [1]The command gsutil ls lists all storage buckets in your project.
Fix the error in the command to deploy an app to App Engine.
gcloud app deploy [1]The correct configuration file for App Engine deployment is app.yaml.
Fill both blanks to create a firewall rule allowing HTTP traffic on port 80.
gcloud compute firewall-rules create allow-http --allow=[1]:[2]
HTTP traffic uses TCP protocol on port 80, so the rule must allow tcp:80.
Fill all three blanks to create a GCP Pub/Sub topic and publish a message.
gcloud pubsub topics create [1] gcloud pubsub topics publish [2] --message=[3]
The topic name must be consistent when creating and publishing. The message is a string like "Hello, GCP!".
