Cloud Sql MCQ Questions and Answers

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

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

About Cloud Sql Practice Questions

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

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

All 131 Cloud Sql Questions

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

1

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud SQL
Cloud Spanner
Dataprep
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
2

What is Cloud SQL?

A fully managed database service that makes it easy to set up and manage MySQL, PostgreSQL, and SQL Server databases
A language for querying Google Search results
A tool for converting spreadsheets to databases
A non-relational database for storing unstructured data
View Explanation
✓ Correct Answer: A fully managed database service that makes it easy to set up and manage MySQL, PostgreSQL, and SQL Server databasesExplanation:Cloud SQL manages backups, replication, and patching for popular relational engines.
3

Which Cloud SQL feature allows you to reduce the read load on your primary database instance by distributing read traffic across multiple instances?

Read Replicas
High Availability (HA) failover
Database Snapshots
Cloud SQL Auth Proxy
View Explanation
✓ Correct Answer: Read ReplicasExplanation:Read replicas are used to scale read-intensive workloads.
4

How does Cloud SQL provide High Availability (HA)?

By maintaining a standby instance in a different zone that automatically takes over if the primary fails
By taking a backup every 5 minutes
By using a global load balancer in front of the database
By increasing the CPU count of the instance
View Explanation
✓ Correct Answer: By maintaining a standby instance in a different zone that automatically takes over if the primary failsExplanation:HA configurations use synchronous replication to a standby instance in another zone.
5

Which Cloud SQL feature allows you to securely connect to your database from a local machine or external application without whitelisting IP addresses?

Cloud SQL Auth Proxy
Cloud VPN
Cloud Armor
Identity-Aware Proxy
View Explanation
✓ Correct Answer: Cloud SQL Auth ProxyExplanation:The Auth Proxy provides secure access to your Cloud SQL instances by establishing a tunnel.
6

Can you use different relational database engines (e.g., MySQL vs PostgreSQL) on the same Cloud SQL instance?

No; each Cloud SQL instance is dedicated to a single engine
Yes, it is possible through a plugin
Only if using the Enterprise tier
Only in the 'europe-west1' region
View Explanation
✓ Correct Answer: No; each Cloud SQL instance is dedicated to a single engineExplanation:When you create a Cloud SQL instance, you must choose one database engine.
7

What is the primary benefit of the 'PostgreSQL-compatible interface' for Cloud Spanner?

It allows developers to use familiar PostgreSQL tools and queries while benefiting from Spanner's global scale and 99.999% availability
It makes Spanner cheaper than Cloud SQL
It allows Spanner to run on-premises
It removes the need for any SQL knowledge
View Explanation
✓ Correct Answer: It allows developers to use familiar PostgreSQL tools and queries while benefiting from Spanner's global scale and 99.999% availabilityExplanation:This interface makes it easier for teams to adopt Spanner without rewriting their entire application logic.
8

Which tool would you use to migrate an on-premises MySQL database to Cloud SQL with minimal downtime?

Database Migration Service (DMS)
Cloud Storage Transfer Service
BigQuery Data Transfer Service
Compute Engine Migration Tool
View Explanation
✓ Correct Answer: Database Migration Service (DMS)Explanation:DMS supports continuous data replication for near-zero downtime migrations.
9

Is Cloud SQL a 'Serverless' service by default?

No; you must choose an instance size (CPU/RAM) and storage capacity
Yes, it scales to zero
Only if you use the 'Cloud SQL Serverless' option
Only for non-production environments
View Explanation
✓ Correct Answer: No; you must choose an instance size (CPU/RAM) and storage capacityExplanation:Cloud SQL is a managed instance-based service, though it manages the underlying OS and patching.
10

What is the maximum storage capacity for a single Cloud SQL instance?

64 Terabytes
100 Gigabytes
1 Petabyte
10 Terabytes
View Explanation
✓ Correct Answer: 64 TerabytesExplanation:Cloud SQL instances can scale up to 64 TB of storage (for MySQL/PostgreSQL).
11

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Spanner
Cloud Firestore
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
12

Which Google Cloud service provides fully managed MySQL, PostgreSQL, and SQL Server databases?

Cloud SQL
Cloud Spanner
Cloud KMS
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL handles backups, patches, and replications automatically while providing a familiar SQL interface.
13

What is 'High Availability' configuration in Cloud SQL used for?

To create a standby instance in a different zone that automatically takes over if the primary instance fails
To double the RAM of the instance
To move the database to another region
To improve the performance of read queries
View Explanation
✓ Correct Answer: To create a standby instance in a different zone that automatically takes over if the primary instance failsExplanation:Regional HA protects against a zonal failure, ensuring minimal downtime.
14

How can you improve the performance of heavy READ workloads on a Cloud SQL instance?

Create one or more Read Replicas
Increase the CPU of the primary instance
Enable SSL
Use Cloud Storage
View Explanation
✓ Correct Answer: Create one or more Read ReplicasExplanation:Read replicas allow you to offload read traffic from the primary instance to horizontally scale.
15

Which Cloud SQL feature allows you to connect to your database from a local machine or a VM securely without using a public IP or configuring firewall rules?

Cloud SQL Auth Proxy
VPC Service Controls
Private Service Access
Standard JDBC connection
View Explanation
✓ Correct Answer: Cloud SQL Auth ProxyExplanation:The Auth proxy automatically handles authentication and encryption using IAM credentials.
16

Does Cloud SQL support automatic storage increases when the disk space is running low?

Yes, you can enable 'Storage Auto-increase' to let GCP expand the disk capacity as needed
No, it must be resized manually
Only for PostgreSQL
Only if using the high-availability SKU
View Explanation
✓ Correct Answer: Yes, you can enable 'Storage Auto-increase' to let GCP expand the disk capacity as neededExplanation:This feature helps prevent application downtime caused by 'Disk Full' errors.
17

What is 'Point-in-Time Recovery' (PITR) in Cloud SQL?

A feature that allows you to restore your database to a specific state in the past by using binary logs
A daily full backup
A way to undo a single SQL command
A migration tool
View Explanation
✓ Correct Answer: A feature that allows you to restore your database to a specific state in the past by using binary logsExplanation:PITR is essential for recovering from data corruption or accidental deletions.
18

Can a Cloud SQL instance use 'Private IP' (internal VPC address) to communicate with other resources in the same network?

Yes, by configuring 'Private Service Access' via VPC Peering to the Google-managed network
No, it must use a public IP
Only for MySQL
Only if they are in the same subnet
View Explanation
✓ Correct Answer: Yes, by configuring 'Private Service Access' via VPC Peering to the Google-managed networkExplanation:Private IP is the preferred way for low-latency, secure internal communication.
19

Which Cloud SQL maintenance option allows an administrator to define a regular weekly time slot where GCP can perform system updates?

Maintenance Window
Automatic Update Group
Service Level Agreement
Resource Policy
View Explanation
✓ Correct Answer: Maintenance WindowExplanation:Setting a maintenance window ensures that updates happen during low-traffic periods.
20

What is the maximum amount of storage supported by a single Cloud SQL for SQL Server instance?

64 TB
100 TB
10 TB
500 GB
View Explanation
✓ Correct Answer: 64 TBExplanation:GCP has scaled Cloud SQL storage limits to meet enterprise demands.
21

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
App Engine
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
22

Your company is deploying a global application that requires a relational database. The application must support multi-region writes with strong consistency and five-nines (99.999%) availability. Which database service should you recommend?

Cloud SQL
Cloud Spanner
Natural Language API
AlloyDB
View Explanation
✓ Correct Answer: Cloud SpannerExplanation:Cloud Spanner is the only GCP service that offers global scale, multi-region writes, strong consistency, and 99.999% availability for relational data.
23

You need to migrate a 50 TB PostgreSQL database from on-premises to Cloud SQL. The business requires the cutover to have less than 1 hour of downtime. Which migration strategy is most effective?

Upload a pg_dump file to Cloud Storage and import it
Use Database Migration Service (DMS) for an online migration
Use a Transfer Appliance to send the data to Google
Set up a VPN and use vanilla pg_basebackup over the tunnel
View Explanation
✓ Correct Answer: Use Database Migration Service (DMS) for an online migrationExplanation:Database Migration Service (DMS) supports serverless, high-speed, online migrations for PostgreSQL to Cloud SQL, minimizing downtime by keeping the target in sync with the source until the cutover.
24

A video game company needs to handle a massive influx of users during a tournament. They need a database that can handle millions of lightning-fast reads and writes with sub-10ms latency for player status updates. Which NoSQL service should they use?

Cloud Bigtable
Cloud Firestore
Memorystore
Natural Language API
View Explanation
✓ Correct Answer: Cloud BigtableExplanation:Cloud Bigtable is optimized for heavy write and read workloads with extremely low latency, making it the go-to for gaming state and high-frequency analytical data.
25

What is the primary benefit of 'Regional Cloud SQL' (High Availability) over 'Standalone Cloud SQL'?

It provides automatic failover to a standby instance in a different zone within the same region
It is cheaper
It is faster for reads
It supports cross-region replication by default
View Explanation
✓ Correct Answer: It provides automatic failover to a standby instance in a different zone within the same regionExplanation:HA Cloud SQL uses regional replication and a standby instance to ensure database availability even if an entire zone fails.
26

An organization is using Google Cloud Spanner for their transactional database. They want to optimize performance for a table that has a high volume of writes. What is a key design best practice in Spanner to avoid 'hotspots'?

Avoid using monotonically increasing primary keys (like timestamps or IDs)
Use a larger machine type
Increase the number of replicas
Use a secondary index for every column
View Explanation
✓ Correct Answer: Avoid using monotonically increasing primary keys (like timestamps or IDs)Explanation:Monotonically increasing keys cause all writes to hit a single 'split' (node) in Spanner, creating a hotspot. Using UUIDs or bit-reversing keys distributes writes evenly.
27

To increase the availability of your Cloud SQL database across multiple regions, what feature should you use?

Cross-Region Read Replicas
Regional High Availability
External Load Balancing
Cloud Pub/Sub sync
View Explanation
✓ Correct Answer: Cross-Region Read ReplicasExplanation:Regional HA only covers zone failure in ONE region. Cross-region replicas provide geographic redundancy and read scalability across regions.
28

A travel website wants to personalize their homepage for every user in real-time based on their recent browsing history. They need a database that can handle very high write volume and sub-millisecond read latency. Which service should they use?

MemoryStore for Redis
Cloud Bigtable
Cloud Spanner
BigQuery
View Explanation
✓ Correct Answer: MemoryStore for RedisExplanation:For sub-millisecond latency (caching/sessions), MemoryStore (Redis) is the primary in-memory data store in GCP.
29

You are hosting a containerized web app on GKE. You want to ensure that your backend pods can access a Cloud SQL database without exposing the database to the public internet. What is the recommended networking approach?

Enable Private IP for the Cloud SQL instance and use the Cloud SQL Auth Proxy
Put the database in a public subnet and use a firewall
Use Cloud NAT for the pods
Use VPC Network Peering between GKE and a separate SQL Project
View Explanation
✓ Correct Answer: Enable Private IP for the Cloud SQL instance and use the Cloud SQL Auth ProxyExplanation:Private IP ensures the database is only reachable within the VPC. The Auth Proxy adds an additional layer of IAM-based authentication and secure tunneling.
30

You are designing a disaster recovery solution for a business that cannot afford more than 5 minutes of data loss (RPO). They are using a Cloud SQL database. Which architecture is required?

Cross-region replication (Read Replicas) with promotion capability
Daily backups to GCS
Regional High Availability (HA)
VPC Service Controls
View Explanation
✓ Correct Answer: Cross-region replication (Read Replicas) with promotion capabilityExplanation:Cross-region replication provides near-real-time updates to a remote region, ensuring a low RPO (Recovery Point Objective) in the event of a catastrophic regional failure.
31

You are designing a schema for a Cloud Bigtable table that will store financial time-series data. To prevent performance degradation due to row-key hotspots, what is the best strategy for your row key design?

Prefix the row key with a hash of the customer ID
Use a sequential timestamp as the prefix
Use the customer name in alphabetical order
Reverse the digits of the date (YYYYMMDD to DDMMYYYY)
View Explanation
✓ Correct Answer: Prefix the row key with a hash of the customer IDExplanation:Hashing or salting the prefix of a row key ensures that consecutive writes (e.g., for different customers at the same time) are distributed across different nodes in the cluster, preventing hotspots.
32

Which Cloud Spanner feature allows you to store related data from different tables in the same physical storage splits to improve join performance and consistency?

Interleaved Tables
Secondary Indexes
Foreign Keys
Partitioned Tables
View Explanation
✓ Correct Answer: Interleaved TablesExplanation:Interleaving allows you to define a parent-child relationship between tables, where child rows are physically stored alongside their parent row, significantly speeding up joins on the primary key.
33

You are migrating a critical monolithic database to Cloud SQL. To minimize the risk of data loss due to a catastrophic zonal failure, which configuration is most important?

Enable High Availability (HA)
Enable automated daily backups
Use SSD storage
Create a read replica in the same zone
View Explanation
✓ Correct Answer: Enable High Availability (HA)Explanation:Regional HA for Cloud SQL provides synchronous replication to a standby instance in a different zone, enabling automatic failover and ensuring data durability during zonal outages.
34

Your company is running a mission-critical database on GCE. To meet an RPO of 0 (zero data loss) across regions, which architecture is required?

A multi-region database like Cloud Spanner
Snapshotting Persistent Disks every 5 minutes
Using Regional Persistent Disks across two regions
Cross-region read replicas in Cloud SQL
View Explanation
✓ Correct Answer: A multi-region database like Cloud SpannerExplanation:Cloud Spanner uses synchronous multi-region replication and Paxos consensus to ensure that a transaction is committed across regions before it's acknowledged, providing an RPO of 0.
35

A global retailer wants to store their product catalog in a database that provides automatic data distribution and consistency across many continents. Which service is best?

Cloud Spanner
AlloyDB
Cloud SQL
Vertex AI
View Explanation
✓ Correct Answer: Cloud SpannerExplanation:Spanner is specifically designed for global-scale relational data with strong consistency across regions.
36

You are building a real-time multiplayer game. You need a database that can handle millions of concurrent players with millisecond-level latency for game state updates. Which service should you choose?

Cloud Bigtable
Cloud Firestore
Memorystore
Spot VMs
View Explanation
✓ Correct Answer: Cloud BigtableExplanation:Bigtable is optimized for extremely high write/read throughput with low latency, making it the industry standard for gaming and time-series data.
37

An organization wants to analyze the performance of their SQL queries in Cloud SQL. They want to identify the slowest queries and see execution plans to optimize them. Which tool should they use?

Cloud SQL Query Insights
Cloud Profiler
Cloud Monitoring
Cloud Logging
View Explanation
✓ Correct Answer: Cloud SQL Query InsightsExplanation:Query Insights is a managed diagnostic tool for Cloud SQL that helps detect, diagnose, and prevent query performance problems.
38

Your team is running a large-scale Bigtable instance. They notice that queries for a specific key range are significantly slower than others. What is the most likely cause?

A 'Hotspot' caused by poorly designed row keys (e.g., sequential data)
The computer is too slow
Data is too large
The region is busy
View Explanation
✓ Correct Answer: A 'Hotspot' caused by poorly designed row keys (e.g., sequential data)Explanation:Hotspots occur when writes or reads are concentrated on a single node because of how keys are distributed. Row keys should be designed to spread traffic across the cluster.
39

Which Cloud SQL feature allows you to perform an almost instantaneous zero-copy 'snapshot' of a database for testing purposes?

Cloud SQL Database Cloning
Point-in-Time Recovery
Automated Backups
Exporing to SQL file
View Explanation
✓ Correct Answer: Cloud SQL Database CloningExplanation:Cloning creates a new instance that is a copy of your existing instance at a specific point in time, which is very fast and doesn't impact production performance.
40

Your team is running a massive Bigtable cluster for a real-time analytics dashboard. They notice that queries are becoming slow. Which Bigtable monitoring metric is the most critical indicator that the cluster needs more nodes?

CPU Utilization (High and sustained)
Total Storage Used
Average Row Size
Network Throughput
View Explanation
✓ Correct Answer: CPU Utilization (High and sustained)Explanation:Bigtable performance is heavily CPU-bound. If CPU utilization is consistently high, adding more nodes is the primary way to scale throughput and reduce latency.
41

Which Cloud Spanner configuration provides the highest availability and lowest latency for users distributed globally across Europe, North America, and Asia?

Multi-region instance with replicas in across the three continents
Regional instance in us-central1 with global read replicas
Regional instance with high HA
Cloud SQL with cross-region replicas
View Explanation
✓ Correct Answer: Multi-region instance with replicas in across the three continentsExplanation:Multi-region Spanner configurations provide global scale and high availability (99.999%) by distributing data and replicas across multiple continents.
42

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Google Compute Engine
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
43

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Spot VMs
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
44

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AutoML
Cloud SQL
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
45

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Build
Cloud Spanner
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
46

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Run
AlloyDB
Cloud SQL
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
47

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Load Balancing
Cloud SQL
Cloud Spanner
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
48

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
49

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Run
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
50

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
Cloud CDN
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
51

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Google Compute Engine
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
52

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Cloud SQL
Cloud VPN
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
53

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Run
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
54

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Network Service Tiers
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
55

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Interconnect
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
56

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
BigQuery
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
57

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Data Catalog
Cloud Spanner
Cloud SQL
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
58

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Spot VMs
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
59

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Natural Language API
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
60

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Dataproc
Cloud Spanner
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
61

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud DNS
Cloud SQL
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
62

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Cloud SQL
AlloyDB
Cloud Dataproc
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
63

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud SQL
Cloud Spanner
Cloud Firestore
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
64

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud Dataflow
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
65

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Run
Cloud Spanner
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
66

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Preemptible VMs
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
67

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Spot VMs
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
68

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud SQL
Cloud Spanner
Memorystore
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
69

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Google Kubernetes Engine (GKE)
AlloyDB
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
70

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Logging
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
71

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Google Cloud Functions
Cloud SQL
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
72

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
Cloud Logging
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
73

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
Preemptible VMs
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
74

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Document AI
Cloud Spanner
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
75

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Local SSD
Cloud Spanner
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
76

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Google Compute Engine
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
77

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Run
Cloud Spanner
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
78

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Storage Nearline
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
79

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud SQL
Cloud Spanner
Google Kubernetes Engine (GKE)
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
80

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud CDN
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
81

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Cloud SQL
AlloyDB
Document AI
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
82

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud SQL
Cloud Spanner
AutoML
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
83

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Google Compute Engine
AlloyDB
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
84

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Spot VMs
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
85

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Spanner
Identity-Aware Proxy (IAP)
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
86

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Data Fusion
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
87

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud SQL
Bare Metal Solution
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
88

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Spot VMs
Cloud Spanner
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
89

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Spot VMs
Cloud SQL
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
90

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Spanner
Cost Management
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
91

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud SQL
Dataprep
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
92

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud Dataflow
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
93

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Cloud SQL
AlloyDB
Translation API
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
94

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Dataprep
Cloud Spanner
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
95

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Preemptible VMs
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
96

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Spanner
Cloud Run
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
97

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Local SSD
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
98

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Filestore
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
99

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Data Catalog
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
100

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud Trace
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
101

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
Cloud KMS
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
102

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud SQL
Cloud Spanner
Bare Metal Solution
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
103

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Persistent Disk
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
104

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Google Compute Engine
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
105

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Cloud SQL
Cloud Dataproc
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
106

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Speech-to-Text
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
107

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Security Command Center
AlloyDB
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
108

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Firestore
Cloud SQL
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
109

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Cloud SQL
AlloyDB
Cloud Storage Archive
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
110

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Filestore
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
111

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
Cloud Storage Coldline
Cloud SQL
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
112

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AutoML
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
113

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud IAM
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
114

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Identity
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
115

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Spot VMs
Cloud Spanner
AlloyDB
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
116

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Cloud DNS
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
117

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Spot VMs
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
118

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Google Compute Engine
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
119

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud SQL
Google Compute Engine
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
120

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
Google Cloud Storage
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
121

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Local SSD
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
122

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
App Engine
Cloud Spanner
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
123

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
AlloyDB
Persistent Disk
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
124

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud SQL
App Engine
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
125

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Preemptible VMs
AlloyDB
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
126

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud SQL
Cloud Storage Archive
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
127

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

AlloyDB
Cloud Spanner
Dialogflow
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
128

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud Spanner
AlloyDB
Cloud Armor
Cloud SQL
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
129

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
AlloyDB
Cloud Spanner
Cloud Dataflow
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
130

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Google Compute Engine
AlloyDB
Cloud SQL
Cloud Spanner
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.
131

A financial application requires a relational database that supports high availability and automated backups. The database must be fully managed to reduce operational overhead. Which service fits these requirements?

Cloud SQL
Cloud Spanner
Cloud Storage Nearline
AlloyDB
View Explanation
✓ Correct Answer: Cloud SQLExplanation:Cloud SQL is a fully managed relational database service that supports high availability and automated backups out of the box.