Cloud Functions MCQ Questions and Answers

Mastering Cloud Functions is crucial for cloud certification success. This dedicated practice set features 105 Cloud Functions MCQ questions and answers designed to mirror real exam scenarios across various GCP certifications.

📝 105 Questions⏱️ 90 min🎯 Pass: 70%

About Cloud Functions Practice Questions

This detailed quiz focuses on Cloud Functions, covering key concepts and scenarios often found in GCP exams.

  • Comprehensive coverage of Cloud Functions features.
  • Scenario-based questions testing design and troubleshooting skills.
  • Detailed explanations to reinforce learning.

All 105 Cloud Functions Questions

Browse through the complete list of questions and answers below. Use this resource to review specific concepts or check your understanding of Cloud Functions.

1

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Spot VMs
Google Kubernetes Engine (GKE)
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
2

What is Google Cloud Functions?

A serverless execution environment for building and connecting cloud services
A physical server located in a Google data center
A tool for managing office spreadsheets
A database for storing large images
View Explanation
✓ Correct Answer: A serverless execution environment for building and connecting cloud servicesExplanation:Cloud Functions allows you to run snippets of code in response to events without managing an underlying server or runtime environment.
3

Which of the following can trigger a Google Cloud Function?

Cloud Storage events, Pub/Sub messages, or HTTP requests
Only a manual click in the Google Cloud Console
Only changes to the billing account
A physical button press in the data center
View Explanation
✓ Correct Answer: Cloud Storage events, Pub/Sub messages, or HTTP requestsExplanation:Cloud Functions are event-driven and can be triggered by many GCP services or via HTTP.
4

What is the primary billing model for Google Cloud Functions?

Pay as you go (based on execution time and resources consumed)
Fixed monthly subscription
Free for all users regardless of usage
Per line of code written
View Explanation
✓ Correct Answer: Pay as you go (based on execution time and resources consumed)Explanation:You are billed for your function's execution time, metered to the nearest 100 milliseconds.
5

Which programming languages are NOT natively supported by Google Cloud Functions through standard runtimes?

COBOL
Node.js
Python
Go
View Explanation
✓ Correct Answer: COBOLExplanation:Natively supported runtimes include Node.js, Python, Go, Java, .NET, and Ruby.
6

In Cloud Functions (2nd gen), what is the maximum duration (timeout) a function can run for an HTTP-triggered request?

60 minutes
9 minutes
10 minutes
24 hours
View Explanation
✓ Correct Answer: 60 minutesExplanation:2nd generation Cloud Functions allow for longer execution times, up to 60 minutes for certain triggers.
7

Which Google Cloud service provides the underlying container infrastructure for Cloud Functions (2nd gen)?

Cloud Run
Google Compute Engine
Google Kubernetes Engine (GKE)
Bare Metal Solution
View Explanation
✓ Correct Answer: Cloud RunExplanation:Cloud Functions (2nd gen) is built on top of Cloud Run and Eventarc.
8

What is 'Min Instances' in Cloud Functions?

A setting to keep a certain number of instances warm to reduce 'cold start' latency
The minimum number of developers needed to deploy a function
The smallest amount of RAM you can allocate
The number of lines of code in the function
View Explanation
✓ Correct Answer: A setting to keep a certain number of instances warm to reduce 'cold start' latencyExplanation:Min instances ensures that your function responds quickly by avoiding initialization delays.
9

Can a Google Cloud Function access a database in a private VPC?

Yes, by using a VPC Connector
No, Cloud Functions are only for public internet traffic
Only if the database is open to all IPs
Only in the 'us-central1' region
View Explanation
✓ Correct Answer: Yes, by using a VPC ConnectorExplanation:Serverless VPC Access allows Cloud Functions to reach resources in your VPC network.
10

Which Cloud Functions feature allows you to manage different versions of your function and split traffic between them?

Traffic Splitting (supported by Cloud Run/Functions 2nd gen)
Manually renaming the functions
Using separate GCP projects
Functions don't support versioning
View Explanation
✓ Correct Answer: Traffic Splitting (supported by Cloud Run/Functions 2nd gen)Explanation:1st generation functions don't support this natively, but 2nd gen functions leverage Cloud Run's revision management.
11

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Spot VMs
Cloud Run
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
12

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Bare Metal Solution
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
13

You are building a real-time data ingestion pipeline using Cloud Pub/Sub. You want to ensure that no messages are lost even if the subscriber application (Cloud Run) is offline for 4 hours. How should you configure Pub/Sub?

Set the message retention duration to at least 4 hours
Use a Dead Letter Topic
Cloud Pub/Sub handles this by default (retains for 7 days)
Use a pull subscription
View Explanation
✓ Correct Answer: Cloud Pub/Sub handles this by default (retains for 7 days)Explanation:By default, Cloud Pub/Sub subscriptions acknowledge and retain messages for up to 7 days, ensuring delivery when the subscriber comes back online.
14

You are designing a high-scale data ingestion system using Cloud Functions. You want to ensure that if a function fails, the event is not lost and can be retried later. Which pattern should you use?

Use an asynchronous trigger (like Pub/Sub) with retry settings enabled
Use a synchronous HTTP trigger
Store the state in a local file on the function
Use BigQuery as a buffer
View Explanation
✓ Correct Answer: Use an asynchronous trigger (like Pub/Sub) with retry settings enabledExplanation:Event-driven Cloud Functions triggered by Pub/Sub (or GCS) support automatic retries. If the function returns a non-zero exit code, the underlying event is re-queued.
15

You are building a serverless data processing pipeline. You want to trigger a Cloud Function every time a new file is created in a Cloud Storage bucket, but you need to ensure the function finishes within its 9-minute execution limit. What is the best design?

Process only one file per function invocation; for large files, use Cloud Dataflow instead
Increase the timeout to 24 hours
Use a while loop inside the function
Manually restart the function
View Explanation
✓ Correct Answer: Process only one file per function invocation; for large files, use Cloud Dataflow insteadExplanation:Cloud Functions have strict time limits. For long-running or large-scale data processing, Cloud Dataflow (or Cloud Run with longer timeouts) is the architecturally correct choice.
16

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Kubernetes Engine (GKE)
Google Cloud Functions
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
17

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Cloud Run
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
18

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Bare Metal Solution
Spot VMs
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
19

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
Google Kubernetes Engine (GKE)
Preemptible VMs
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
20

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
App Engine
Google Cloud Functions
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
21

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Google Cloud Functions
Cloud Run
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
22

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Spot VMs
Bare Metal Solution
Cloud Run
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
23

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Compute Engine
Google Cloud Functions
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
24

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Spot VMs
Google Compute Engine
Google Cloud Functions
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
25

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Cloud Functions
App Engine
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
26

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Google Kubernetes Engine (GKE)
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
27

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Spot VMs
Preemptible VMs
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
28

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Bare Metal Solution
Spot VMs
Preemptible VMs
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
29

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Cloud Functions
Cloud Run
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
30

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Google Compute Engine
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
31

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Google Compute Engine
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
32

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Google Cloud Functions
Cloud Run
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
33

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Kubernetes Engine (GKE)
App Engine
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
34

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Cloud Run
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
35

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Cloud Functions
Preemptible VMs
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
36

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
App Engine
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
37

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
Google Cloud Functions
Bare Metal Solution
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
38

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Compute Engine
App Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
39

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Preemptible VMs
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
40

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
Google Compute Engine
Bare Metal Solution
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
41

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Google Kubernetes Engine (GKE)
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
42

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
Spot VMs
Google Kubernetes Engine (GKE)
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
43

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Google Kubernetes Engine (GKE)
Google Compute Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
44

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Cloud Run
Google Kubernetes Engine (GKE)
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
45

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Spot VMs
Google Compute Engine
App Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
46

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
App Engine
Cloud Run
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
47

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Cloud Run
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
48

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Cloud Run
Preemptible VMs
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
49

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Preemptible VMs
Google Compute Engine
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
50

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Kubernetes Engine (GKE)
Google Compute Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
51

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Cloud Functions
Google Kubernetes Engine (GKE)
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
52

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
App Engine
Spot VMs
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
53

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Preemptible VMs
App Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
54

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Bare Metal Solution
Google Kubernetes Engine (GKE)
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
55

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Preemptible VMs
App Engine
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
56

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Spot VMs
Google Compute Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
57

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
Bare Metal Solution
Preemptible VMs
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
58

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
Google Cloud Functions
App Engine
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
59

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Spot VMs
Google Compute Engine
Google Cloud Functions
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
60

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Cloud Functions
Spot VMs
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
61

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
App Engine
Google Cloud Functions
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
62

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Cloud Functions
Preemptible VMs
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
63

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Spot VMs
App Engine
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
64

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
Bare Metal Solution
Google Cloud Functions
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
65

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Spot VMs
Google Kubernetes Engine (GKE)
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
66

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Spot VMs
Bare Metal Solution
Preemptible VMs
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
67

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Bare Metal Solution
Cloud Run
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
68

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Cloud Functions
Cloud Run
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
69

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
Preemptible VMs
Google Compute Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
70

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Preemptible VMs
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
71

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Compute Engine
Google Kubernetes Engine (GKE)
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
72

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Google Compute Engine
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
73

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Spot VMs
Cloud Run
Google Cloud Functions
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
74

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Kubernetes Engine (GKE)
Cloud Run
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
75

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
App Engine
Bare Metal Solution
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
76

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Spot VMs
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
77

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
Google Kubernetes Engine (GKE)
Google Cloud Functions
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
78

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Kubernetes Engine (GKE)
Google Compute Engine
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
79

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Cloud Functions
App Engine
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
80

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
App Engine
Google Cloud Functions
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
81

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Bare Metal Solution
App Engine
Spot VMs
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
82

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Spot VMs
Google Compute Engine
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
83

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
App Engine
Google Cloud Functions
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
84

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Spot VMs
Cloud Run
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
85

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Bare Metal Solution
Google Compute Engine
Google Cloud Functions
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
86

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Preemptible VMs
Google Cloud Functions
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
87

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Google Kubernetes Engine (GKE)
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
88

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
App Engine
Cloud Run
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
89

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Preemptible VMs
Spot VMs
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
90

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Bare Metal Solution
App Engine
Google Cloud Functions
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
91

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Google Kubernetes Engine (GKE)
Spot VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
92

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Google Kubernetes Engine (GKE)
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
93

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Kubernetes Engine (GKE)
Google Cloud Functions
Cloud Run
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
94

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Compute Engine
Google Kubernetes Engine (GKE)
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
95

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Kubernetes Engine (GKE)
Spot VMs
Google Compute Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
96

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Cloud Run
Google Kubernetes Engine (GKE)
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
97

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Compute Engine
Google Cloud Functions
Preemptible VMs
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
98

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Google Compute Engine
Google Cloud Functions
Bare Metal Solution
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
99

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Bare Metal Solution
Google Compute Engine
Google Kubernetes Engine (GKE)
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
100

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

App Engine
Google Kubernetes Engine (GKE)
Bare Metal Solution
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
101

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Compute Engine
App Engine
Bare Metal Solution
Google Cloud Functions
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
102

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Kubernetes Engine (GKE)
Google Compute Engine
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
103

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Preemptible VMs
Google Cloud Functions
App Engine
Cloud Run
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
104

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Google Cloud Functions
Google Kubernetes Engine (GKE)
Google Compute Engine
App Engine
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.
105

You are designing a serverless microservices architecture for a new startup. The application needs to handle unpredictable traffic spikes without managing any underlying infrastructure. Which compute service should you use?

Cloud Run
Spot VMs
Google Cloud Functions
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Google Cloud FunctionsExplanation:Google Cloud Functions is a serverless compute service that automatically scales with demand, making it ideal for unpredictable traffic without infrastructure management.