Complete the command to list all Compute Engine instances in the current project.
gcloud compute instances [1]The list command shows all instances in your project.
Complete the command to create a new persistent disk named 'my-disk' of size 100GB in zone us-central1-a.
gcloud compute disks create my-disk --size=[1] --zone=us-central1-aThe --size flag sets the disk size. Here, 100GB is the requested size.
Fix the error in the command to start an instance named 'web-server' in zone us-east1-b.
gcloud compute instances [1] web-server --zone=us-east1-bThe start command powers on a stopped instance.
Fill both blanks to create a new instance named 'app-server' in zone us-west1-b with machine type n1-standard-1.
gcloud compute instances [1] app-server --zone=[2] --machine-type=n1-standard-1
Use create to make a new instance and specify the correct zone us-west1-b.
Fill all three blanks to attach a disk named 'data-disk' to instance 'db-server' in zone us-east1-c with device name 'data1'.
gcloud compute instances [1] db-server --zone=[2] --disk=[3] --device-name=data1
Use attach-disk to add a disk, specify the correct zone us-east1-c, and the disk name data-disk.