ExamGecko
Ask Question

Salesforce Certified Heroku Architecture Designer Practice Test - Questions Answers, Page 10

List of questions

Question 91

Report
Export
Collapse

Which Heroku features should an Architect recommend to create a secure connection between Heroku and Microsoft Azure?

Heroku Private Spaces and Private Space VPN Connections, using Azure's built-in VPN endpoint.
Heroku Private Spaces and Private Space VPN Connections, using Azure's built-in VPN endpoint.
Heroku Private Spaces and Private Space VPN Connections, using a compatible VPN endpoint on Azure
Heroku Private Spaces and Private Space VPN Connections, using a compatible VPN endpoint on Azure
Heroku Shield Private Spaces and Internal Routing, using Azure's built-in VPN endpoint
Heroku Shield Private Spaces and Internal Routing, using Azure's built-in VPN endpoint
Heroku Private Spaces and Private Space Peering, using Azure's VPC Peering.
Heroku Private Spaces and Private Space Peering, using Azure's VPC Peering.
Suggested answer: B

Explanation:

- https://devcenter.herokuxom/articles/using-sso-services-with-heroku#end-user-account-creationand-removal

asked 23/09/2024
karl hickey
42 questions

Question 92

Report
Export
Collapse

Universal Containers (UC) uses Heroku Connect to synchronize changes to the Account object in their Salesforce org. UC's Heroku application makes a batch update that changes one million records to the Heroku Postgres database table that mirrors the Account object. Approximately, how long will these updates take to sync back to the Salesforce org?

It depends on the sync performance, which can vary from one connection to another.
It depends on the sync performance, which can vary from one connection to another.
1 hour.
1 hour.
One million updates is too many for Heroku Connect to handle; therefore, the sync will fail
One million updates is too many for Heroku Connect to handle; therefore, the sync will fail
12 hours.
12 hours.
Suggested answer: A

Explanation:

- https://devcenter.heroku.com/articles/using-sso-services-with-heroku#prerequisites-for-ssowith-heroku

asked 23/09/2024
asdf asdf
38 questions

Question 93

Report
Export
Collapse

A client has 3 Heroku applications: App 1, App 2, App 3. They would like to restrict external web traffic to App 3 only. Which two Heroku features should an Architect recommend to enable this architecture?

VPC Peering
VPC Peering
Trusted IP ranges
Trusted IP ranges
Private Spaces
Private Spaces
Internal Routing
Internal Routing
Suggested answer: B
asked 23/09/2024
Leila Bekirova
39 questions

Question 94

Report
Export
Collapse

Upon arrival for a Service Appointment, the Field Service Technician reports that a team of people is required to resolve the issue.

How can the Dispatcher ensure that the required staff is assigned to the project?

Assign the existing Service Appointment to a Crew.
Assign the existing Service Appointment to a Crew.
Assign the existing Work Order to each staff member
Assign the existing Work Order to each staff member
Create a new Service Appointment and assign a Crew.
Create a new Service Appointment and assign a Crew.
Assign the existing Work Order to a Crew.
Assign the existing Work Order to a Crew.
Suggested answer: C
asked 23/09/2024
Lebogang Aphane
44 questions

Question 95

Report
Export
Collapse

Universal Containers acquires a company that runs an application on Google Cloud Platform (GCP).

The GCP application needs to communicate securely with a Heroku application. The Heroku application has Internal Routing enabled and is running in a Private Space. Which two recommendations should an Architect make to satisfy this use case? Choose 2 answers.

Ensure that the Private Space and GCP use distinct CIDR ranges
Ensure that the Private Space and GCP use distinct CIDR ranges
Disable Internal Routing on the Heroku app.
Disable Internal Routing on the Heroku app.
Ensure that the Private Space and GCP use matching CIDR ranges.
Ensure that the Private Space and GCP use matching CIDR ranges.
Establish a secure site-to-site VPN connection between the Private Space and GCP.
Establish a secure site-to-site VPN connection between the Private Space and GCP.
Suggested answer: A, D

Explanation:

- Here is the https://devcenter.heroku.com/articles/vpn-private-space. google-cloudplatform#manual-setup

asked 23/09/2024
Eduardo Bravo
38 questions

Question 96

Report
Export
Collapse

Universal Export wants to build an app that serves company dat a. The data has no strong compliance requirements, and the app should only be reachable from trusted IP addresses. Which solution should an Architect recommend?

Deploy the app in a Shield Private Space with a Shield-tier Heroku Postgres database
Deploy the app in a Shield Private Space with a Shield-tier Heroku Postgres database
Deploy the app in the Common Runtime with a Standard-tier Heroku Postgres database
Deploy the app in the Common Runtime with a Standard-tier Heroku Postgres database
Deploy the app in a Private Space with a Private-tier Heroku Postgres database.
Deploy the app in a Private Space with a Private-tier Heroku Postgres database.
Deploy the app in the Common Runtime with a Premium-tier Heroku Postgres database.
Deploy the app in the Common Runtime with a Premium-tier Heroku Postgres database.
Suggested answer: C

Explanation:

- https://devcenter.heroku.eom/articles/heroku-connect-faq#can-i-use-sharing-rules-to-restrictrecord-visibility

asked 23/09/2024
sergio sombrero
34 questions

Question 97

Report
Export
Collapse

An existing app is experiencing performance degradation because of multiple executions of multiple, expensive SQL read queries. This SQL code cannot be optimized any further and the frequency of the execution of the queries cannot be reduced. Which two options should an Architect recommend in this scenario?

Hardcode the results of the query into app logic
Hardcode the results of the query into app logic
Add a read-only Heroku Postgres follower
Add a read-only Heroku Postgres follower
Create a database caching layer
Create a database caching layer
Restart the Heroku Postgres server to reclaim cache
Restart the Heroku Postgres server to reclaim cache
Suggested answer: B, C

Explanation:

- https://devcenter.heroku.com/articles/using-sso-services-with-heroku#end-user-account-creationand-removal

asked 23/09/2024
Matthew Cole
36 questions

Question 98

Report
Export
Collapse

When designing a Heroku application, which two approaches observe the Twelve-Factor methodology? Choose 2 answers.

On deployment, Heroku fetches and installs any dependencies that are missing according to the application's list of dependencies
On deployment, Heroku fetches and installs any dependencies that are missing according to the application's list of dependencies
On startup, the application's source code fetches and installs any dependencies that are missing according to the application's list of dependencies.
On startup, the application's source code fetches and installs any dependencies that are missing according to the application's list of dependencies.
The application's database configuration is stored in the application's Profile
The application's database configuration is stored in the application's Profile
The application's database configuration is stored in the application's config vars.
The application's database configuration is stored in the application's config vars.
Suggested answer: A, D

Explanation:

- https://devcenter.heroku.com/articies/heroku-connect-database-tables#encrypted-strings

asked 23/09/2024
Vyas Dookhun
31 questions

Question 99

Report
Export
Collapse

Universal Containers is developing a Salesforce app that invokes a Heroku app's web service, which asynchronously generates customer invoices. The Heroku app is deployed to a Private Space. When an invoice is ready, the Heroku app sends a POST request to the Salesforce REST API. Which two options should an Architect recommend to ensure that neither the Salesforce nor the Heroku app is accessible from the public internet? Choose 2 answers.

Restrict the Private Space's trusted IP range to Salesforce IP addresses
Restrict the Private Space's trusted IP range to Salesforce IP addresses
Restrict the Private Space's trusted IP range to Universal Containers' VPN
Restrict the Private Space's trusted IP range to Universal Containers' VPN
Restrict the Salesforce connected app's login IP ranges to Universal Containers' VPN
Restrict the Salesforce connected app's login IP ranges to Universal Containers' VPN
Restrict the Salesforce connected app's login IP ranges to the stable outbound IP addresses of the Private Space
Restrict the Salesforce connected app's login IP ranges to the stable outbound IP addresses of the Private Space
Suggested answer: A, D

Explanation:

- This is no VPN connection and a trusted IP range is used to limit the trusted outside application's IP address And there is document related to this use case:

https://devcenterheroku.com/articles/establish-trust-private-space-and-salesforce#salesforceheroku-apps

asked 23/09/2024
Venkata Shiva Rajesh Boyinapalli
40 questions

Question 100

Report
Export
Collapse

Which three actions can a user perform on an app in a Heroku Enterprise Team, if that user has been granted only the "deploy" permission for that app? Choose 3 answers.

Provision an add-on with a free plan
Provision an add-on with a free plan
Manage the app's config vars.
Manage the app's config vars.
Transfer the app to another Enterprise Team.
Transfer the app to another Enterprise Team.
Roll back a release
Roll back a release
Suggested answer: A, B, D

Explanation:

- https://devcenter heroku com/articles/heroku-connect-database-tables#encrypted-strings

asked 23/09/2024
Samori Augusto
43 questions
Total 185 questions
Go to page: of 19
Search

Related questions