0
0
GCPcloud~10 mins

What is Google Cloud Platform in GCP - Interactive Quiz & Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a Google Cloud Storage bucket named "my-bucket".

GCP
gcloud storage buckets create [1]
Drag options to blanks, or click blank then click option'
Amy-bucket
Bstorage-bucket
Cbucket-123
Dcloud-bucket
Attempts:
3 left
💡 Hint
Common Mistakes
Using a bucket name that is already taken.
Forgetting to specify the bucket name.
2fill in blank
medium

Complete the code to list running Compute Engine instances in the current project.

GCP
gcloud compute instances list --filter=[1]
Drag options to blanks, or click blank then click option'
Aname=my-instance
Bzone=us-central1-a
Cstatus=RUNNING
Dproject=my-project
Attempts:
3 left
💡 Hint
Common Mistakes
Using a filter that does not match any instances.
Omitting the filter and getting all instances.
3fill in blank
hard

Fix the error in the command to create an App Engine application with the correct region.

GCP
gcloud app create --region=[1]
Drag options to blanks, or click blank then click option'
Ainvalid-region
Beurope-west1
Casia-northeast1
Dus-central
Attempts:
3 left
💡 Hint
Common Mistakes
Using a region that is not supported by App Engine.
Typo in the region name.
4fill in blank
hard

Fill both blanks to create a firewall rule allowing HTTP traffic on port 80.

GCP
gcloud compute firewall-rules create [1] --allow=[2]
Drag options to blanks, or click blank then click option'
Aallow-http
Btcp:80
Cudp:53
Ddeny-all
Attempts:
3 left
💡 Hint
Common Mistakes
Using the wrong protocol or port.
Using a rule name that does not match the purpose.
5fill in blank
hard

Fill all three blanks to create a Cloud Pub/Sub topic and publish a message.

GCP
gcloud pubsub topics create [1]
gcloud pubsub topics publish [2] --message=[3]
Drag options to blanks, or click blank then click option'
Amy-topic
C"Hello, Cloud!"
D"Test message"
Attempts:
3 left
💡 Hint
Common Mistakes
Using different topic names for creation and publishing.
Forgetting to quote the message string.