SlideShare a Scribd company logo
1 of 23
Download to read offline
Google Cloud Certified -
Professional Cloud
Developer
Practice Questions
SKILLCERTPRO
Question 1:
Your team set up the standard VM configuration for a group of applications and
prepared an autoscaled managed instance group using an instance template,
At startup your VMs have to be equipped with the correct software and ready to
serve user requests.
You have legacy applications, so it is possible that the startup procedures are quite
complex.
Which are the actions to take (pick 2)?
A. Use several instance templates for different configurations
B. Store your script in Cloud Repository
C. Store your script on Cloud Storage
D. Use custom metadata keys for different configurations
https://skillcertpro.com/yourls/pcd
Answer: C, D
Explanation:
"Startup scripts can perform automated tasks every time your instance boots
up, such as:
• installing software,
• performing updates,
• turning on services
You can provide a startup script
• In a file in the local VM
• Directly with --metadata startup-script
• With the Cloud Storage URL
You may also set parameters in startup scripts with custom metadata
key/values.
A is wrong because it is not a good idea to create different templates when
you can use parameters
B is wrong because it is not possible to use Cloud Repository for this purpose.
For any further detail:
https://cloud.google.com/compute/docs/startupscript
Question 2:
Your team set up the standard VM configuration for a group of applications and
prepared an autoscaled managed instance group using an instance template,
At startup your VMs have to be equipped with the correct software and ready to
serve user requests.
You have legacy applications, so it is possible that the startup procedures are quite
complex.
Your team prepared the startup scripts but they don’t know how to set custom
values, so they asked for your advice.
What are the correct instructions you can give them (pic 2)?
A. Set custom metadata at instance and at project level
B. Set custom metadata at instance level
C. Set custom metadata at project level
D. Set System Environment variables
E. Use the parameters in script with the Syntax ${PARAM}
F. Use the parameters in script with the Syntax $PARAM
https://skillcertpro.com/yourls/pcd
Answer: A, F
Explanation:
"Custom metadata can be set at instance and at project level, so you can have an optimal
organization.
The correct syntax is $PARAM, as stated in the documentation.
The Metadata section allows you to specify key-value pairs associated with the instance.
These values are stored in a metadata server, which is available for querying using the
Compute Engine API. Metadata tags are especially useful if you have a common script you
want to run on startup or shutdown but want the behavior of the script to vary according to
some metadata values.
For any further detail:
https://cloud.google.com/compute/docs/startupscript
https://cloud.google.com/compute/docs/storing-retrieving-metadata
https://skillcertpro.com/yourls/pcd
Question 3:
Your team set up the standard VM configuration for a group of applications and prepared a
template.
Now the traffic is increasing and you want everything to be more scalable, always available
and secure.
You already set up a managed instance group (MIG) for high availability in case
malfunctioning of instances.
Now you want to achieve autoscaling, too.
Your web and mobile apps manage session data in memory and work with HTTPs.
What is the service you have to use?
A. L7 Load Balancer
B. L3 Load Balancer
C. HTTPS Load Balancing with generated cookie session affinity
D. Network Load Balancing with generated cookie session affinity
https://skillcertpro.com/yourls/pcd
Answer: C
Explanation:
"You need an External HTTPs Load Balancer because it manages HTTPs and session affinity.
L7 Load Balancer means aan Application Load Balancer while L3 is a Network Load Balancer.
An HTTPS load balancer uses a target HTTPS proxy and requires one signed SSL certificate installed on the
target HTTPS proxy for the load balancer. You can use self-managed or Google-managed SSL
certificates.
The client SSL session terminates at the load balancer.
Session affinity provides a best-effort attempt to send requests from a particular client to the same
backend for as long as the backend is healthy and has the capacity, according to the configured
balancing mode.
It can be done with IP and with cookies; for mobile apps the cookies choice is preferrable, because If a
client moves from one network to another, its IP address changes, so the affinity will be broken.
Network (L3) load balancers direct TCP or UDP traffic across regional backends. You can use Network
Load Balancing to load balance UDP, TCP, and SSL traffic on ports that are not supported by the TCP
proxy load balancers and SSL proxy load balancers.
For any further detail:
https://cloud.google.com/load-balancing/docs/https
https://skillcertpro.com/yourls/pcd
Question 4:
Your team set up the standard VM configuration for a group of applications and
prepared a template.
Everything is working just fine.
Your team adopted Agile methodologies, so you update your app frequently.
You want these operations to be performed without any disruption.
What is the very first action to take?
A. Start a new VM and the manually switch traffic
B. Set up a Load Balancer
C. Use App Engine standard edition
D. Set up a managed instance group
https://skillcertpro.com/yourls/pcd
Answer: D
Explanation:
"The managed instance group (MIG) is a group of instances capable of acting as one.
You can easily and safely deploy new versions of software to instances in a managed instance group.
The rollout of an update happens automatically based on your specifications: you can control the speed
and scope of the update rollout in order to minimize disruptions to your application. You can optionally
perform partial rollouts which allows for canary testing.
A is wrong because there is disruption in this way
B is wrong because you have to set up first a MIG
C is wrong because App Engine can perform these special deployments bus you have to re-engineer
the apps. No need of that.
For any further detail:
https://cloud.google.com/compute/docs/instance-groups/
https://cloud.google.com/compute/docs/instance-groups/rolling-out-updates-to-managed-instance-
groups
https://skillcertpro.com/yourls/pcd
Question 5:
Your team set up the standard VM configuration for a group of applications and
prepared a template.
Everything is working just fine.
Now the traffic is increasing and you want everything to be more scalable, high
available and secure.
What is the very first action to take?
A. For next VM you put the --scalable parameter in the template
B. Set up a Load Balancer
C. Take a snapshot of the boot disk
D. Set up a managed instance group
https://skillcertpro.com/yourls/pcd
Answer: D
Explanation:
"The managed instance group (MIG) gives you high availability: If an instance stops, crashes, is
malfunctioning or is deleted by an action other than an instance group management command, the
MIG automatically recreates that instance in accordance with the original instance's specification.
Managed instance groups support autoscaling that dynamically adds or removes instances. You have to
setup a Load Balancer in front of the MIG
A is wrong because there is not a --scalable parameter
B is wrong because you have to set up first a MIG
C is wrong because is not what is required
For any further detail:
https://cloud.google.com/compute/docs/instance-groups/
https://cloud.google.com/compute/docs/instance-groups/rolling-out-updates-to-managed-instance-
groups
https://skillcertpro.com/yourls/pcd
Question 6:
You want to upload files from an on-premises virtual machine to Google Cloud
Storage as part of a data migration. These files will be consumed by Cloud
DataProc Hadoop cluster in a GCP environment.
Which command should you use?
A. gsutil cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/
B. gcloud cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/
C. hadoop fs cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/
D. gcloud dataproc cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/
https://skillcertpro.com/yourls/pcd
Correct Answer: A
The gsutil cp command allows you to copy data between your local file. storage. boto files
generated by running "gsutil config"
https://skillcertpro.com/yourls/pcd
Question 7:
You migrated your applications to Google Cloud Platform and kept your existing
monitoring platform. You now find that your notification system is too slow for time
critical problems.
What should you do?
A. Replace your entire monitoring platform with Stackdriver.
B. Install the Stackdriver agents on your Compute Engine instances.
C. Use Stackdriver to capture and alert on logs, then ship them to your existing
platform.
D. Migrate some traffic back to your old platform and perform AB testing on the two
platforms concurrently.
https://skillcertpro.com/yourls/pcd
Correct Answer: B
Reference:
https://cloud.google.com/monitoring/
https://skillcertpro.com/yourls/pcd
Question 8:
You are planning to migrate a MySQL database to the managed Cloud SQL
database for Google Cloud. You have Compute Engine virtual machine instances
that will connect with this Cloud SQL instance. You do not want to whitelist IPs for
the Compute Engine instances to be able to access Cloud SQL.
What should you do?
A. Enable private IP for the Cloud SQL instance.
B. Whitelist a project to access Cloud SQL, and add Compute Engine instances in
the whitelisted project.
C. Create a role in Cloud SQL that allows access to the database from external
instances, and assign the Compute Engine instances to that role.
D. Create a CloudSQL instance on one project. Create Compute engine instances
in a different project. Create a VPN between these two projects to allow internal
access to CloudSQL.
https://skillcertpro.com/yourls/pcd
Correct Answer: C
Reference:
https://cloud.google.com/sql/docs/mysql/connect-
external-app
https://skillcertpro.com/yourls/pcd
Question 9:
You have deployed an HTTP(s) Load Balancer with the gcloud commands shown below.
Health checks to port 80 on the Compute Engine virtual machine instance are failing and no traffic is sent to your
instances. You want to resolve the problem.
Which commands should you run?
A. gcloud compute instances add-access-config ${NAME}-backend-instance-1
B. gcloud compute instances add-tags ${NAME}-backend-instance-1 --tags http-server
C. gcloud compute firewall-rules create allow-lb --network load-balancer --allow tcp --source-ranges
130.211.0.0/22,35.191.0.0/16 --direction INGRESS
D. gcloud compute firewall-rules create allow-lb --network load-balancer --allow tcp --destination-ranges
130.211.0.0/22,35.191.0.0/16 --direction EGRESS
Correct Answer: C
Reference:
https://cloud.google.com/vpc/docs/special-configurations
https://skillcertpro.com/yourls/pcd
Question 10:
You need to copy directory local-scripts and all of its contents from your local
workstation to a Compute Engine virtual machine instance.
Which command should you use?
A. gsutil cp --project "my-gcp-project" -r ~/local-scripts/ gcp-instance-
name:~/server-scripts/ --zone "us-east1-b"
B. gsutil cp --project "my-gcp-project" -R ~/local-scripts/ gcp-instance-
name:~/server-scripts/ --zone "us-east1-b"
C. gcloud compute scp --project "my-gcp-project" --recurse ~/local-scripts/ gcp-
instance-name:~/server-scripts/ --zone "us-east1-b"
D. gcloud compute mv --project "my-gcp-project" --recurse ~/local-scripts/ gcp-
instance-name:~/server-scripts/ --zone "us-east1-b"
https://skillcertpro.com/yourls/pcd
Correct Answer: C
Reference:
https://cloud.google.com/sdk/gcloud/reference/compute/copy-files
https://skillcertpro.com/yourls/pcd
Hope you enjoyed the questions. Want to practice more questions?
We have 170+ Practice set questions for Google Cloud Certified -
Professional Cloud Developer certification (Taken from previous
exams)
Full Practice Set link below
https://skillcertpro.com/yourls/pcd
100% Money back Guarantee, If you don't pass the exam in 1st
attempt, your money will be refunded back.
Please subscribe to our channel to get notified
for discount coupons and future updates.
https://www.youtube.com/c/skillcertpro
Thank you.

More Related Content

What's hot

Laporan praktikum kimia asam basa
Laporan praktikum kimia asam basaLaporan praktikum kimia asam basa
Laporan praktikum kimia asam basaQueena N.A.S
 
Teori asam-basa lewis
Teori asam-basa lewisTeori asam-basa lewis
Teori asam-basa lewisEno Lidya
 
Card-Decks, Deckible & The Creative Economy
Card-Decks, Deckible & The Creative EconomyCard-Decks, Deckible & The Creative Economy
Card-Decks, Deckible & The Creative EconomyNick Kellet
 
BIOKIMIA I KARBOHIDRAT UHO
BIOKIMIA I KARBOHIDRAT UHOBIOKIMIA I KARBOHIDRAT UHO
BIOKIMIA I KARBOHIDRAT UHObudhywijaya
 
Hidrokarbon-Kimia Kelas 11/XI SMA
Hidrokarbon-Kimia Kelas 11/XI SMAHidrokarbon-Kimia Kelas 11/XI SMA
Hidrokarbon-Kimia Kelas 11/XI SMABagas Pramana
 
Uv vis spektra senyawa kompleks2 penting
Uv vis spektra senyawa kompleks2 pentingUv vis spektra senyawa kompleks2 penting
Uv vis spektra senyawa kompleks2 pentingMahbub Alwathoni
 
pengaruh suhu terhadap laju reaksi
pengaruh suhu terhadap laju reaksipengaruh suhu terhadap laju reaksi
pengaruh suhu terhadap laju reaksiPutri Yusril
 
rpp termokimia konsep dasar eksoterm dan endoterm
rpp termokimia konsep dasar eksoterm dan endotermrpp termokimia konsep dasar eksoterm dan endoterm
rpp termokimia konsep dasar eksoterm dan endotermirma ima
 
Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...
Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...
Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...eftikurnia
 
45715687 aplikasi-senyawa-kompleks
45715687 aplikasi-senyawa-kompleks45715687 aplikasi-senyawa-kompleks
45715687 aplikasi-senyawa-kompleksandragrup01
 
Ensayo sobre los efectos del ciber ataque ransomeware
Ensayo sobre los efectos del ciber ataque ransomewareEnsayo sobre los efectos del ciber ataque ransomeware
Ensayo sobre los efectos del ciber ataque ransomewareCristian Nina Mamani
 
Penurunan titik beku
Penurunan titik bekuPenurunan titik beku
Penurunan titik bekuDewa Tagoer
 
stoikiometri
 stoikiometri stoikiometri
stoikiometrimfebri26
 

What's hot (20)

Avogadro
AvogadroAvogadro
Avogadro
 
Laporan praktikum kimia asam basa
Laporan praktikum kimia asam basaLaporan praktikum kimia asam basa
Laporan praktikum kimia asam basa
 
Bab6 makromulekul (polimer)
Bab6 makromulekul (polimer)Bab6 makromulekul (polimer)
Bab6 makromulekul (polimer)
 
Teori asam-basa lewis
Teori asam-basa lewisTeori asam-basa lewis
Teori asam-basa lewis
 
Card-Decks, Deckible & The Creative Economy
Card-Decks, Deckible & The Creative EconomyCard-Decks, Deckible & The Creative Economy
Card-Decks, Deckible & The Creative Economy
 
Bab12
Bab12Bab12
Bab12
 
Ikatan logam
Ikatan logam Ikatan logam
Ikatan logam
 
BIOKIMIA I KARBOHIDRAT UHO
BIOKIMIA I KARBOHIDRAT UHOBIOKIMIA I KARBOHIDRAT UHO
BIOKIMIA I KARBOHIDRAT UHO
 
Hidrokarbon-Kimia Kelas 11/XI SMA
Hidrokarbon-Kimia Kelas 11/XI SMAHidrokarbon-Kimia Kelas 11/XI SMA
Hidrokarbon-Kimia Kelas 11/XI SMA
 
Hidrolisis
HidrolisisHidrolisis
Hidrolisis
 
Sifat Fisis Larutan
Sifat Fisis LarutanSifat Fisis Larutan
Sifat Fisis Larutan
 
Uv vis spektra senyawa kompleks2 penting
Uv vis spektra senyawa kompleks2 pentingUv vis spektra senyawa kompleks2 penting
Uv vis spektra senyawa kompleks2 penting
 
pengaruh suhu terhadap laju reaksi
pengaruh suhu terhadap laju reaksipengaruh suhu terhadap laju reaksi
pengaruh suhu terhadap laju reaksi
 
rpp termokimia konsep dasar eksoterm dan endoterm
rpp termokimia konsep dasar eksoterm dan endotermrpp termokimia konsep dasar eksoterm dan endoterm
rpp termokimia konsep dasar eksoterm dan endoterm
 
Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...
Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...
Efti kurniawati (a1f011031)konfigurasi elektron dan hubungannya dengan sistem...
 
45715687 aplikasi-senyawa-kompleks
45715687 aplikasi-senyawa-kompleks45715687 aplikasi-senyawa-kompleks
45715687 aplikasi-senyawa-kompleks
 
Ensayo sobre los efectos del ciber ataque ransomeware
Ensayo sobre los efectos del ciber ataque ransomewareEnsayo sobre los efectos del ciber ataque ransomeware
Ensayo sobre los efectos del ciber ataque ransomeware
 
Penurunan titik beku
Penurunan titik bekuPenurunan titik beku
Penurunan titik beku
 
Ppt molekul
Ppt molekulPpt molekul
Ppt molekul
 
stoikiometri
 stoikiometri stoikiometri
stoikiometri
 

Similar to Google cloud certified professional cloud developer practice dumps 2020

GCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdf
GCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdfGCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdf
GCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdfssuserc36624
 
Microsoft DevOps AZ-400 Real Dumps 2023
Microsoft DevOps AZ-400 Real Dumps 2023Microsoft DevOps AZ-400 Real Dumps 2023
Microsoft DevOps AZ-400 Real Dumps 2023VictoriaMeisel
 
Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020SkillCertProExams
 
2022 Update Google Professional Cloud Security Engineer Exam Questions
2022 Update Google Professional Cloud Security Engineer Exam Questions2022 Update Google Professional Cloud Security Engineer Exam Questions
2022 Update Google Professional Cloud Security Engineer Exam QuestionswilliamLeo13
 
AZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdf
AZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdfAZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdf
AZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdfshirlybaker1
 
AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)
AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)
AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)ellahenry684
 
3V0-32.21 Dumps Questions
3V0-32.21 Dumps Questions3V0-32.21 Dumps Questions
3V0-32.21 Dumps QuestionsStudy Material
 
Azure appservice
Azure appserviceAzure appservice
Azure appserviceRaju Kumar
 
2022 Update PCNSE Certification Exam Questions
2022 Update PCNSE Certification Exam Questions2022 Update PCNSE Certification Exam Questions
2022 Update PCNSE Certification Exam QuestionswilliamLeo13
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxmichaeljayaraj1
 
Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...
Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...
Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...IBM Systems UKI
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxmambrino
 
Microsoft azure architect design (az 304) practice tests 2022
Microsoft azure architect design (az 304) practice tests 2022Microsoft azure architect design (az 304) practice tests 2022
Microsoft azure architect design (az 304) practice tests 2022SkillCertProExams
 
Google professional data engineer exam dumps
Google professional data engineer exam dumpsGoogle professional data engineer exam dumps
Google professional data engineer exam dumpsTestPrep Training
 

Similar to Google cloud certified professional cloud developer practice dumps 2020 (20)

GCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdf
GCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdfGCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdf
GCP-Professional-Cloud-Developer-Exam-v22.2.1_139-taqwlj.pdf
 
Microsoft DevOps AZ-400 Real Dumps 2023
Microsoft DevOps AZ-400 Real Dumps 2023Microsoft DevOps AZ-400 Real Dumps 2023
Microsoft DevOps AZ-400 Real Dumps 2023
 
Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020Google cloud Professional Data Engineer practice exam test 2020
Google cloud Professional Data Engineer practice exam test 2020
 
000 252
000 252000 252
000 252
 
000 237
000 237000 237
000 237
 
2022 Update Google Professional Cloud Security Engineer Exam Questions
2022 Update Google Professional Cloud Security Engineer Exam Questions2022 Update Google Professional Cloud Security Engineer Exam Questions
2022 Update Google Professional Cloud Security Engineer Exam Questions
 
AZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdf
AZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdfAZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdf
AZ-204 A Top-Notch Exam Of Developing Solutions for Microsoft Azure.pdf
 
Google Cloud Platform
Google Cloud Platform Google Cloud Platform
Google Cloud Platform
 
AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)
AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)
AZ-204 Exam Dumps (V41.0) - Pass Microsoft AZ-204 Exam (2024)
 
Amazon AWS SAA-C03 Exam Dumps
Amazon AWS SAA-C03 Exam DumpsAmazon AWS SAA-C03 Exam Dumps
Amazon AWS SAA-C03 Exam Dumps
 
3V0-32.21 Dumps Questions
3V0-32.21 Dumps Questions3V0-32.21 Dumps Questions
3V0-32.21 Dumps Questions
 
Azure appservice
Azure appserviceAzure appservice
Azure appservice
 
2022 Update PCNSE Certification Exam Questions
2022 Update PCNSE Certification Exam Questions2022 Update PCNSE Certification Exam Questions
2022 Update PCNSE Certification Exam Questions
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptx
 
1z0-997-21.pdf
1z0-997-21.pdf1z0-997-21.pdf
1z0-997-21.pdf
 
Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...
Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...
Pure Systems Patterns of Expertise - John Kaemmerer and Gerry Kovan, 11th Sep...
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptx
 
Microsoft azure architect design (az 304) practice tests 2022
Microsoft azure architect design (az 304) practice tests 2022Microsoft azure architect design (az 304) practice tests 2022
Microsoft azure architect design (az 304) practice tests 2022
 
70 533 study material
70 533 study material70 533 study material
70 533 study material
 
Google professional data engineer exam dumps
Google professional data engineer exam dumpsGoogle professional data engineer exam dumps
Google professional data engineer exam dumps
 

More from SkillCertProExams

Salesforce Contact Center Professional (CCP) Exam Dumps 2024.pdf
Salesforce Contact Center Professional (CCP) Exam Dumps 2024.pdfSalesforce Contact Center Professional (CCP) Exam Dumps 2024.pdf
Salesforce Contact Center Professional (CCP) Exam Dumps 2024.pdfSkillCertProExams
 
Microsoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdf
Microsoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdfMicrosoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdf
Microsoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdfSkillCertProExams
 
AWS Solutions Architect Professional Certification Exam Dumps 2023.pdf
AWS Solutions Architect Professional Certification Exam Dumps 2023.pdfAWS Solutions Architect Professional Certification Exam Dumps 2023.pdf
AWS Solutions Architect Professional Certification Exam Dumps 2023.pdfSkillCertProExams
 
OCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdf
OCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdfOCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdf
OCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdfSkillCertProExams
 
MuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdfMuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdfSkillCertProExams
 
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdfAzure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdfSkillCertProExams
 
OCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdf
OCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdfOCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdf
OCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdfSkillCertProExams
 
Google machine learning engineer exam dumps 2022
Google machine learning engineer exam dumps 2022Google machine learning engineer exam dumps 2022
Google machine learning engineer exam dumps 2022SkillCertProExams
 
Aws data analytics practice tests 2022
Aws data analytics practice tests 2022Aws data analytics practice tests 2022
Aws data analytics practice tests 2022SkillCertProExams
 
Aws certified security specialty practice tests 2022
Aws certified security specialty practice tests 2022Aws certified security specialty practice tests 2022
Aws certified security specialty practice tests 2022SkillCertProExams
 
Comptia security+ (sy0-601) exam dumps 2022
Comptia security+ (sy0-601) exam dumps 2022Comptia security+ (sy0-601) exam dumps 2022
Comptia security+ (sy0-601) exam dumps 2022SkillCertProExams
 
Certified ethical hacker (cehv11) exam dumps 2022
Certified ethical hacker (cehv11) exam dumps 2022Certified ethical hacker (cehv11) exam dumps 2022
Certified ethical hacker (cehv11) exam dumps 2022SkillCertProExams
 
Microsoft azure data fundamentals (dp 900) practice tests 2022
Microsoft azure data fundamentals (dp 900) practice tests 2022Microsoft azure data fundamentals (dp 900) practice tests 2022
Microsoft azure data fundamentals (dp 900) practice tests 2022SkillCertProExams
 
Microsoft sc 900 exam dumps 2021
Microsoft sc 900 exam dumps 2021Microsoft sc 900 exam dumps 2021
Microsoft sc 900 exam dumps 2021SkillCertProExams
 

More from SkillCertProExams (14)

Salesforce Contact Center Professional (CCP) Exam Dumps 2024.pdf
Salesforce Contact Center Professional (CCP) Exam Dumps 2024.pdfSalesforce Contact Center Professional (CCP) Exam Dumps 2024.pdf
Salesforce Contact Center Professional (CCP) Exam Dumps 2024.pdf
 
Microsoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdf
Microsoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdfMicrosoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdf
Microsoft Azure Security Technologies (AZ-500) Exam Dumps 2023.pdf
 
AWS Solutions Architect Professional Certification Exam Dumps 2023.pdf
AWS Solutions Architect Professional Certification Exam Dumps 2023.pdfAWS Solutions Architect Professional Certification Exam Dumps 2023.pdf
AWS Solutions Architect Professional Certification Exam Dumps 2023.pdf
 
OCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdf
OCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdfOCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdf
OCI Oracle Foundations Associate (1Z0-1085-23) Exam Dumps 2023.pdf
 
MuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdfMuleSoft Certified Platform Architect Exam Dumps 2023.pdf
MuleSoft Certified Platform Architect Exam Dumps 2023.pdf
 
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdfAzure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
Azure Enterprise Data Analyst (DP-500) Exam Dumps 2023.pdf
 
OCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdf
OCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdfOCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdf
OCI Architect Associate (1Z0-1072-22) Exam Dumps 2023.pdf
 
Google machine learning engineer exam dumps 2022
Google machine learning engineer exam dumps 2022Google machine learning engineer exam dumps 2022
Google machine learning engineer exam dumps 2022
 
Aws data analytics practice tests 2022
Aws data analytics practice tests 2022Aws data analytics practice tests 2022
Aws data analytics practice tests 2022
 
Aws certified security specialty practice tests 2022
Aws certified security specialty practice tests 2022Aws certified security specialty practice tests 2022
Aws certified security specialty practice tests 2022
 
Comptia security+ (sy0-601) exam dumps 2022
Comptia security+ (sy0-601) exam dumps 2022Comptia security+ (sy0-601) exam dumps 2022
Comptia security+ (sy0-601) exam dumps 2022
 
Certified ethical hacker (cehv11) exam dumps 2022
Certified ethical hacker (cehv11) exam dumps 2022Certified ethical hacker (cehv11) exam dumps 2022
Certified ethical hacker (cehv11) exam dumps 2022
 
Microsoft azure data fundamentals (dp 900) practice tests 2022
Microsoft azure data fundamentals (dp 900) practice tests 2022Microsoft azure data fundamentals (dp 900) practice tests 2022
Microsoft azure data fundamentals (dp 900) practice tests 2022
 
Microsoft sc 900 exam dumps 2021
Microsoft sc 900 exam dumps 2021Microsoft sc 900 exam dumps 2021
Microsoft sc 900 exam dumps 2021
 

Recently uploaded

4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 

Recently uploaded (20)

4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 

Google cloud certified professional cloud developer practice dumps 2020

  • 1. Google Cloud Certified - Professional Cloud Developer Practice Questions SKILLCERTPRO
  • 2. Question 1: Your team set up the standard VM configuration for a group of applications and prepared an autoscaled managed instance group using an instance template, At startup your VMs have to be equipped with the correct software and ready to serve user requests. You have legacy applications, so it is possible that the startup procedures are quite complex. Which are the actions to take (pick 2)? A. Use several instance templates for different configurations B. Store your script in Cloud Repository C. Store your script on Cloud Storage D. Use custom metadata keys for different configurations https://skillcertpro.com/yourls/pcd
  • 3. Answer: C, D Explanation: "Startup scripts can perform automated tasks every time your instance boots up, such as: • installing software, • performing updates, • turning on services You can provide a startup script • In a file in the local VM • Directly with --metadata startup-script • With the Cloud Storage URL You may also set parameters in startup scripts with custom metadata key/values. A is wrong because it is not a good idea to create different templates when you can use parameters B is wrong because it is not possible to use Cloud Repository for this purpose. For any further detail: https://cloud.google.com/compute/docs/startupscript
  • 4. Question 2: Your team set up the standard VM configuration for a group of applications and prepared an autoscaled managed instance group using an instance template, At startup your VMs have to be equipped with the correct software and ready to serve user requests. You have legacy applications, so it is possible that the startup procedures are quite complex. Your team prepared the startup scripts but they don’t know how to set custom values, so they asked for your advice. What are the correct instructions you can give them (pic 2)? A. Set custom metadata at instance and at project level B. Set custom metadata at instance level C. Set custom metadata at project level D. Set System Environment variables E. Use the parameters in script with the Syntax ${PARAM} F. Use the parameters in script with the Syntax $PARAM https://skillcertpro.com/yourls/pcd
  • 5. Answer: A, F Explanation: "Custom metadata can be set at instance and at project level, so you can have an optimal organization. The correct syntax is $PARAM, as stated in the documentation. The Metadata section allows you to specify key-value pairs associated with the instance. These values are stored in a metadata server, which is available for querying using the Compute Engine API. Metadata tags are especially useful if you have a common script you want to run on startup or shutdown but want the behavior of the script to vary according to some metadata values. For any further detail: https://cloud.google.com/compute/docs/startupscript https://cloud.google.com/compute/docs/storing-retrieving-metadata https://skillcertpro.com/yourls/pcd
  • 6. Question 3: Your team set up the standard VM configuration for a group of applications and prepared a template. Now the traffic is increasing and you want everything to be more scalable, always available and secure. You already set up a managed instance group (MIG) for high availability in case malfunctioning of instances. Now you want to achieve autoscaling, too. Your web and mobile apps manage session data in memory and work with HTTPs. What is the service you have to use? A. L7 Load Balancer B. L3 Load Balancer C. HTTPS Load Balancing with generated cookie session affinity D. Network Load Balancing with generated cookie session affinity https://skillcertpro.com/yourls/pcd
  • 7. Answer: C Explanation: "You need an External HTTPs Load Balancer because it manages HTTPs and session affinity. L7 Load Balancer means aan Application Load Balancer while L3 is a Network Load Balancer. An HTTPS load balancer uses a target HTTPS proxy and requires one signed SSL certificate installed on the target HTTPS proxy for the load balancer. You can use self-managed or Google-managed SSL certificates. The client SSL session terminates at the load balancer. Session affinity provides a best-effort attempt to send requests from a particular client to the same backend for as long as the backend is healthy and has the capacity, according to the configured balancing mode. It can be done with IP and with cookies; for mobile apps the cookies choice is preferrable, because If a client moves from one network to another, its IP address changes, so the affinity will be broken. Network (L3) load balancers direct TCP or UDP traffic across regional backends. You can use Network Load Balancing to load balance UDP, TCP, and SSL traffic on ports that are not supported by the TCP proxy load balancers and SSL proxy load balancers. For any further detail: https://cloud.google.com/load-balancing/docs/https https://skillcertpro.com/yourls/pcd
  • 8. Question 4: Your team set up the standard VM configuration for a group of applications and prepared a template. Everything is working just fine. Your team adopted Agile methodologies, so you update your app frequently. You want these operations to be performed without any disruption. What is the very first action to take? A. Start a new VM and the manually switch traffic B. Set up a Load Balancer C. Use App Engine standard edition D. Set up a managed instance group https://skillcertpro.com/yourls/pcd
  • 9. Answer: D Explanation: "The managed instance group (MIG) is a group of instances capable of acting as one. You can easily and safely deploy new versions of software to instances in a managed instance group. The rollout of an update happens automatically based on your specifications: you can control the speed and scope of the update rollout in order to minimize disruptions to your application. You can optionally perform partial rollouts which allows for canary testing. A is wrong because there is disruption in this way B is wrong because you have to set up first a MIG C is wrong because App Engine can perform these special deployments bus you have to re-engineer the apps. No need of that. For any further detail: https://cloud.google.com/compute/docs/instance-groups/ https://cloud.google.com/compute/docs/instance-groups/rolling-out-updates-to-managed-instance- groups https://skillcertpro.com/yourls/pcd
  • 10. Question 5: Your team set up the standard VM configuration for a group of applications and prepared a template. Everything is working just fine. Now the traffic is increasing and you want everything to be more scalable, high available and secure. What is the very first action to take? A. For next VM you put the --scalable parameter in the template B. Set up a Load Balancer C. Take a snapshot of the boot disk D. Set up a managed instance group https://skillcertpro.com/yourls/pcd
  • 11. Answer: D Explanation: "The managed instance group (MIG) gives you high availability: If an instance stops, crashes, is malfunctioning or is deleted by an action other than an instance group management command, the MIG automatically recreates that instance in accordance with the original instance's specification. Managed instance groups support autoscaling that dynamically adds or removes instances. You have to setup a Load Balancer in front of the MIG A is wrong because there is not a --scalable parameter B is wrong because you have to set up first a MIG C is wrong because is not what is required For any further detail: https://cloud.google.com/compute/docs/instance-groups/ https://cloud.google.com/compute/docs/instance-groups/rolling-out-updates-to-managed-instance- groups https://skillcertpro.com/yourls/pcd
  • 12. Question 6: You want to upload files from an on-premises virtual machine to Google Cloud Storage as part of a data migration. These files will be consumed by Cloud DataProc Hadoop cluster in a GCP environment. Which command should you use? A. gsutil cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/ B. gcloud cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/ C. hadoop fs cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/ D. gcloud dataproc cp [LOCAL_OBJECT] gs://[DESTINATION_BUCKET_NAME]/ https://skillcertpro.com/yourls/pcd
  • 13. Correct Answer: A The gsutil cp command allows you to copy data between your local file. storage. boto files generated by running "gsutil config" https://skillcertpro.com/yourls/pcd
  • 14. Question 7: You migrated your applications to Google Cloud Platform and kept your existing monitoring platform. You now find that your notification system is too slow for time critical problems. What should you do? A. Replace your entire monitoring platform with Stackdriver. B. Install the Stackdriver agents on your Compute Engine instances. C. Use Stackdriver to capture and alert on logs, then ship them to your existing platform. D. Migrate some traffic back to your old platform and perform AB testing on the two platforms concurrently. https://skillcertpro.com/yourls/pcd
  • 16. Question 8: You are planning to migrate a MySQL database to the managed Cloud SQL database for Google Cloud. You have Compute Engine virtual machine instances that will connect with this Cloud SQL instance. You do not want to whitelist IPs for the Compute Engine instances to be able to access Cloud SQL. What should you do? A. Enable private IP for the Cloud SQL instance. B. Whitelist a project to access Cloud SQL, and add Compute Engine instances in the whitelisted project. C. Create a role in Cloud SQL that allows access to the database from external instances, and assign the Compute Engine instances to that role. D. Create a CloudSQL instance on one project. Create Compute engine instances in a different project. Create a VPN between these two projects to allow internal access to CloudSQL. https://skillcertpro.com/yourls/pcd
  • 18. Question 9: You have deployed an HTTP(s) Load Balancer with the gcloud commands shown below. Health checks to port 80 on the Compute Engine virtual machine instance are failing and no traffic is sent to your instances. You want to resolve the problem. Which commands should you run? A. gcloud compute instances add-access-config ${NAME}-backend-instance-1 B. gcloud compute instances add-tags ${NAME}-backend-instance-1 --tags http-server C. gcloud compute firewall-rules create allow-lb --network load-balancer --allow tcp --source-ranges 130.211.0.0/22,35.191.0.0/16 --direction INGRESS D. gcloud compute firewall-rules create allow-lb --network load-balancer --allow tcp --destination-ranges 130.211.0.0/22,35.191.0.0/16 --direction EGRESS
  • 20. Question 10: You need to copy directory local-scripts and all of its contents from your local workstation to a Compute Engine virtual machine instance. Which command should you use? A. gsutil cp --project "my-gcp-project" -r ~/local-scripts/ gcp-instance- name:~/server-scripts/ --zone "us-east1-b" B. gsutil cp --project "my-gcp-project" -R ~/local-scripts/ gcp-instance- name:~/server-scripts/ --zone "us-east1-b" C. gcloud compute scp --project "my-gcp-project" --recurse ~/local-scripts/ gcp- instance-name:~/server-scripts/ --zone "us-east1-b" D. gcloud compute mv --project "my-gcp-project" --recurse ~/local-scripts/ gcp- instance-name:~/server-scripts/ --zone "us-east1-b" https://skillcertpro.com/yourls/pcd
  • 22. Hope you enjoyed the questions. Want to practice more questions? We have 170+ Practice set questions for Google Cloud Certified - Professional Cloud Developer certification (Taken from previous exams) Full Practice Set link below https://skillcertpro.com/yourls/pcd 100% Money back Guarantee, If you don't pass the exam in 1st attempt, your money will be refunded back.
  • 23. Please subscribe to our channel to get notified for discount coupons and future updates. https://www.youtube.com/c/skillcertpro Thank you.