Google Cloud Platform

 30 Minutes
 10 Questions


This test assesses a candidate's ability to work with Google Cloud Platform (GCP) services, including BigQuery, Cloud Storage, and Compute Engine. The test includes multiple-choice questions (MCQs), real-world scenarios, and command-line tasks to evaluate practical knowledge and troubleshooting skills.
Topics Covered:
- BigQuery:
Writing optimized SQL queries
Partitioning & clustering for performance
Working with JSON and nested data
Best practices for cost control
- Cloud Storage
Managing storage classes and lifecycle policies
Object permissions and public access
Using gsutil and gcloud commands for storage management
Synchronization and data transfer strategies
- Compute Engine
Creating and managing VM instances
Startup scripts and automated provisioning
Disk resizing and storage management
Troubleshooting networking and firewall issues


Example Question:

Multiple-Choice
What happens when you execute the following query in BigQuery?

SELECT name, COUNT(*) 
FROM my_dataset.customers
WHERE country = 'US';





Answers
1. It will return an error because COUNT(*) requires a GROUP BY clause
2. It will count the number of rows where country = 'US' and group by name
3. It will count unique names in the US region
4. It will return only the first matching row due to implicit LIMIT 1