Organize Memory, SSD, and Persistent Disks from fast to slow
Memory is the fastest
Then SSD
Then Persistent
Whats the command if you want to see the configurations for a kubernetes cluster?
D. Use “kubectl config use-context” and “kubectl config view” to review the output.
If you have projects from a different Cloud Organization and want to move it to your own billing account, how would that work? The simplest way
You would just link the projects to your own billing account
From these, BigTable, FireStore, Cloud Storage.
Which one is used for unstructured data like images/videos?
Cloud Storage
From these, BigTable, FireStore, Cloud Storage.
Which one is used for structured data like analytical queries or operational tasks?
BigTable
From these, BigTable, FireStore, Cloud Storage.
Which one is used for NoSQL, event driven, real time data?
Firestore
If you want a low-cost storage that you aren’t going to access frequently, and that you need to stay compliant, what should you pick?
Coldline Storage
If you want to update the configs of a infrastructure using deployment manager, what should the command be?
B. gcloud deployment-manager deployments update –config <deployment-config-path></deployment-config-path>
If you want to find the RDP credentials for a VM and give it to others, how would you do it?
B. After the VM has been created, use “gcloud compute reset-windows-password” to retrieve the login credentials for the VM.
Can you log into a VM with JSON private key?
No, JSON private key are used to provide API access permissions and does not translate to credentials
Difference between deployment manager and managed instance groups when it comes to lots of VMs?
Deployment manager is where you manage resources, configs of a VM while MiGs is for autoscaling and load balancing
App Engine Native feature of splitting?
You can use App Engine to split traffic between versions of your apps
Whats one big reason you’d put data in BigQuery over BigTable?
When you want to analyze data
When scaling a Compute Engine VM setup using a custom image, what is the correct process to quickly create multiple identical instances?
✅ Create a custom image from a snapshot, then create instances from that image.
What must you do to get logs from a VM running?
You need to install cloud logging agent so that the Cloud Logging app has someone sending more logs to it
Only simple log data is sent to cloud logging by default
WHat storage provides high IOPs?
Local SSDs
You need to deploy a new Compute Engine VM for a website, but the project doesn’t exist yet. What are the correct steps to follow?
How can you estimate how much an on-demand BigQuery query will cost before running it?
Run a dry run query in the command line to estimate the number of bytes read,
then use the BigQuery Pricing Calculator to convert those bytes into a dollar cost
How do you group Google Cloud resources so they share common IAM policies and can be managed together?
Use Folders in the Google Cloud resource hierarchy.
Rule: Set IAM at the folder → policies inherit to all projects/resources under it.
You must SSH into many Compute Engine VMs securely without giving them public IPs. What should you use?
Cloud IAP for SSH/TCP (IAP TCP forwarding).
Rule: Identity-aware SSH over an IAP tunnel; no public IPs needed.
How can you avoid typing the zone (e.g., europe-west1-d) every time you run a gcloud command for your Compute Engine instances?
This sets the default zone for all future gcloud commands in your current configuration.
VMs in QuickServe-frontend must read BigQuery data in QuickServe-database. What’s the Google-recommended IAM setup?
Grant the frontend VM’s service account roles/bigquery.dataViewer on the QuickServe-database (project or specific datasets), and only the minimal roles it needs in QuickServe-frontend.
Your app (TCP on port 389) must be internet-facing and must preserve the original client IP. Which GCP load balancer?
External passthrough TCP Network Load Balancer (a.k.a. External TCP NLB).
What’s the simplest way to get real-time visibility and alerts for firewall changes and new VM creations in Google Cloud?
Create log-based metrics in Cloud Logging (filtering Cloud Audit Logs for firewall + instance actions), then add Cloud Monitoring alerts on those metrics.