SlideShare uma empresa Scribd logo
1 de 23
Baixar para ler 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.

Mais conteúdo relacionado

Mais procurados

도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!
도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!
도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!pyrasis
 
Introduction to git flow
Introduction to git flowIntroduction to git flow
Introduction to git flowKnoldus Inc.
 
Gitlab flow solo
Gitlab flow soloGitlab flow solo
Gitlab flow soloviniciusban
 
Low-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil PerssonLow-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil PerssonAMD Developer Central
 
Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Tiago Sousa
 
Scouter와 influx db – grafana 연동 가이드
Scouter와 influx db – grafana 연동 가이드Scouter와 influx db – grafana 연동 가이드
Scouter와 influx db – grafana 연동 가이드Ji-Woong Choi
 
Introduction to story points
Introduction to story pointsIntroduction to story points
Introduction to story pointsAnil Kulkarni CSM
 
Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기
Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기
Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기KyeongmanKang
 
iFunEngine: 30분 만에 게임 서버 만들기
iFunEngine: 30분 만에 게임 서버 만들기iFunEngine: 30분 만에 게임 서버 만들기
iFunEngine: 30분 만에 게임 서버 만들기iFunFactory Inc.
 
Practical estimation techniques
Practical estimation techniquesPractical estimation techniques
Practical estimation techniquesSwatiKapoor43
 
DevOps with GitHub Actions
DevOps with GitHub ActionsDevOps with GitHub Actions
DevOps with GitHub ActionsNilesh Gule
 
졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회
졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회
졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회ChangHyun Won
 
[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들
[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들
[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들강 민우
 
Hierachical z Map Occlusion Culling
Hierachical z Map Occlusion CullingHierachical z Map Occlusion Culling
Hierachical z Map Occlusion CullingYEONG-CHEON YOU
 
Introduction to Jira - Bug Tracking tool
Introduction to Jira - Bug Tracking toolIntroduction to Jira - Bug Tracking tool
Introduction to Jira - Bug Tracking toolGlobal SQA
 
송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010devCAT Studio, NEXON
 
Feature Toggle
Feature ToggleFeature Toggle
Feature ToggleBryan Liu
 
Introduction to Django REST Framework, an easy way to build REST framework in...
Introduction to Django REST Framework, an easy way to build REST framework in...Introduction to Django REST Framework, an easy way to build REST framework in...
Introduction to Django REST Framework, an easy way to build REST framework in...Zhe Li
 
KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화
KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화
KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화Jongwon Kim
 

Mais procurados (20)

도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!
도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!
도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다!
 
Introduction to git flow
Introduction to git flowIntroduction to git flow
Introduction to git flow
 
Gitlab flow solo
Gitlab flow soloGitlab flow solo
Gitlab flow solo
 
Low-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil PerssonLow-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil Persson
 
Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)Graphics Gems from CryENGINE 3 (Siggraph 2013)
Graphics Gems from CryENGINE 3 (Siggraph 2013)
 
Scouter와 influx db – grafana 연동 가이드
Scouter와 influx db – grafana 연동 가이드Scouter와 influx db – grafana 연동 가이드
Scouter와 influx db – grafana 연동 가이드
 
Introduction to story points
Introduction to story pointsIntroduction to story points
Introduction to story points
 
Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기
Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기
Jira + Confluence + Bitbucket으로 이슈 트래킹 걸음마 떼기
 
iFunEngine: 30분 만에 게임 서버 만들기
iFunEngine: 30분 만에 게임 서버 만들기iFunEngine: 30분 만에 게임 서버 만들기
iFunEngine: 30분 만에 게임 서버 만들기
 
Practical estimation techniques
Practical estimation techniquesPractical estimation techniques
Practical estimation techniques
 
DevOps with GitHub Actions
DevOps with GitHub ActionsDevOps with GitHub Actions
DevOps with GitHub Actions
 
졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회
졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회
졸업작품을 앞둔 게임 기획/프로그래밍 전공 교류회
 
[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들
[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들
[IGC2018] 청강대 이득우 - 언리얼에디터확장을위해알아야할것들
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
 
Hierachical z Map Occlusion Culling
Hierachical z Map Occlusion CullingHierachical z Map Occlusion Culling
Hierachical z Map Occlusion Culling
 
Introduction to Jira - Bug Tracking tool
Introduction to Jira - Bug Tracking toolIntroduction to Jira - Bug Tracking tool
Introduction to Jira - Bug Tracking tool
 
송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010송창규, unity build로 빌드타임 반토막내기, NDC2010
송창규, unity build로 빌드타임 반토막내기, NDC2010
 
Feature Toggle
Feature ToggleFeature Toggle
Feature Toggle
 
Introduction to Django REST Framework, an easy way to build REST framework in...
Introduction to Django REST Framework, an easy way to build REST framework in...Introduction to Django REST Framework, an easy way to build REST framework in...
Introduction to Django REST Framework, an easy way to build REST framework in...
 
KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화
KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화
KGC 2014 프로파일러를 이용한 게임 클라이언트 최적화
 

Semelhante a 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
 

Semelhante a 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
 

Mais de 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
 

Mais de 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
 

Último

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 

Último (20)

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 

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.