ExamGecko
Home Home / Salesforce / Certified Heroku Architecture Designer

Salesforce Certified Heroku Architecture Designer Practice Test - Questions Answers

Question list
Search
Search

List of questions

Search

Related questions











Universal Containers needs to write their Heroku application's logs to two destinations: an onpremise Syslog log server and a cloud analytics provider that ingests logs using an HTTPS endpoint.

What should an Architect recommend in this scenario?

A.
Publish all logs to Apache Kafka on Heroku, and create a separate app that consumes and distributes log messages.
A.
Publish all logs to Apache Kafka on Heroku, and create a separate app that consumes and distributes log messages.
Answers
B.
Write all logs to Heroku Redis as a buffer and use an add-on to send them to both destinations.
B.
Write all logs to Heroku Redis as a buffer and use an add-on to send them to both destinations.
Answers
C.
Add a logging library to the application source that sends all logs directly to both destinations.
C.
Add a logging library to the application source that sends all logs directly to both destinations.
Answers
D.
Write all logs to stdout, and configure a separate log drain for each destination.
D.
Write all logs to stdout, and configure a separate log drain for each destination.
Answers
Suggested answer: D

Explanation:

Reference:

A hospital is planning to rewrite its on-premise patient registration system. Their current system is HIPAA-compliant as well as ISO 27018-compliant. They need to maintain these same certification levels after the rewrite. Their new app also needs to sync PII (personally identifiable information) data with their Salesforce org.

What Heroku Enterprise solutions should an Architect propose?

A.
Build the app in a Shield Private Space, with a Shield Heroku Postgres database, and use Apache Kafka on Heroku to stream from the Salesforce org.
A.
Build the app in a Shield Private Space, with a Shield Heroku Postgres database, and use Apache Kafka on Heroku to stream from the Salesforce org.
Answers
B.
Build the app in the Common Runtime, use a Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
B.
Build the app in the Common Runtime, use a Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
Answers
C.
Build the app in a Shield Private Space, with a Shield Heroku Postgres database, and use Shield Heroku Connect to sync to Salesforce.
C.
Build the app in a Shield Private Space, with a Shield Heroku Postgres database, and use Shield Heroku Connect to sync to Salesforce.
Answers
D.
Build the app in a Private Space with a Private Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
D.
Build the app in a Private Space with a Private Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
Answers
Suggested answer: C

A client is creating a new API application. The app should only be accessible from other apps that they deploy to Heroku. Also, traffic between the other apps and the API should not transit the public internet.

Which solution should an Architect recommend to meet these requirements?

A.
Create the application in a Private Space with default options.
A.
Create the application in a Private Space with default options.
Answers
B.
Create the application in a Private Space and restrict the application's set of trusted IP ranges.
B.
Create the application in a Private Space and restrict the application's set of trusted IP ranges.
Answers
C.
Create the application with Internal Routing enabled, in a Private Space.
C.
Create the application with Internal Routing enabled, in a Private Space.
Answers
D.
Create the application in a Shield Private Space to enforce stricter requirements for TLS termination.
D.
Create the application in a Shield Private Space to enforce stricter requirements for TLS termination.
Answers
Suggested answer: B

Explanation:

Reference:

A client has data in a production Heroku Postgres database, and needs to quickly get access to a subset of that data for reporting needs.

Which two features does Heroku Dataclips provide to enable this? (Choose two.)

A.
JSON export of query results, with CORS support
A.
JSON export of query results, with CORS support
Answers
B.
CSV export of query results
B.
CSV export of query results
Answers
C.
A simple REST API access to query results
C.
A simple REST API access to query results
Answers
D.
Postgres dump file of query results
D.
Postgres dump file of query results
Answers
Suggested answer: A, B

Explanation:

- https://devcenter.heroku.com/arlicles/dataclips

Which three items are required to successfully set up Single Sign-on (SSO) services with Heroku?

(Choose three.)

A.
An identity provider with built-in support for Heroku
A.
An identity provider with built-in support for Heroku
Answers
B.
A Heroku Enterprise Team
B.
A Heroku Enterprise Team
Answers
C.
An existing Heroku account for each user
C.
An existing Heroku account for each user
Answers
D.
At least one valid SSO certificate
D.
At least one valid SSO certificate
Answers
E.
Administrative permissions on the selected identity provider
E.
Administrative permissions on the selected identity provider
Answers
Suggested answer: A, B, E

Explanation:

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

Universal Containers intends to build an app which will accept card payments. The app also needs to store, process, and transmit cardholder data.

Which Heroku architecture should an Architect recommend?

A.
Common Runtime with secure, isolated containers for running the app's code.
A.
Common Runtime with secure, isolated containers for running the app's code.
Answers
B.
A Private Space restricted to a set of trusted IP ranges.
B.
A Private Space restricted to a set of trusted IP ranges.
Answers
C.
A Shield Private Space with a Shield Postgres add-on.
C.
A Shield Private Space with a Shield Postgres add-on.
Answers
D.
A Private Space with Internal Routing enabled on the app.
D.
A Private Space with Internal Routing enabled on the app.
Answers
Suggested answer: C

Explanation:

Reference:

A client wants to create a secure network connection between Heroku applications running in a Private Space and an AWS VPC.

Which Heroku feature should an Architect recommend to create the connection?

A.
Internal Routing
A.
Internal Routing
Answers
B.
Private Space Peering
B.
Private Space Peering
Answers
C.
Private Space VPN connections
C.
Private Space VPN connections
Answers
D.
Heroku Connect
D.
Heroku Connect
Answers
Suggested answer: C

Explanation:

- https://devcenterheroku.corn/articles/event-driven-microservices-with-apache-kafka

A client wants to add CPU-intensive video processing functionality to their Heroku web application.

Which two strategies should an Architect recommend for implementing this functionality? (Choose two.)

A.
Add a new process type for worker dynos that pull video processing jobs from a queue.
A.
Add a new process type for worker dynos that pull video processing jobs from a queue.
Answers
B.
Attach a video processing add-on from the Heroku Elements Marketplace to the application.
B.
Attach a video processing add-on from the Heroku Elements Marketplace to the application.
Answers
C.
Delegate video processing tasks to the app's staging version to remove load from the production app. D. Divide each video processing task across multiple web dynos to mitigate added CPU load.
C.
Delegate video processing tasks to the app's staging version to remove load from the production app. D. Divide each video processing task across multiple web dynos to mitigate added CPU load.
Answers
Suggested answer: A, B

Explanation:

Reference:

Universal Containers has a Heroku app that uses several third-party add-ons. They now need to enforce data privacy and be compliant with General Data Protection Regulation (GDPR).

What should an Architect advise UC regarding data residency in this scenario?

A.
Heroku does not control where add-on providers store data.
A.
Heroku does not control where add-on providers store data.
Answers
B.
Heroku support can configure add-ons for specific data residency needs.
B.
Heroku support can configure add-ons for specific data residency needs.
Answers
C.
Heroku guarantees the physical location of its control surface APIs.
C.
Heroku guarantees the physical location of its control surface APIs.
Answers
D.
Data residency for add-ons is covered under Salesforce's GDPR compliance.
D.
Data residency for add-ons is covered under Salesforce's GDPR compliance.
Answers
Suggested answer: B

An app uses a queue of worker dynos to perform complex image processing, but the worker dynos are occasionally running out of memory when performing the processing. All of their dynos are currently standard-1x dynos.

What should an Architect recommend in this scenario?

A.
Add additional worker dynos.
A.
Add additional worker dynos.
Answers
B.
Break up the image processing across multiple dynos.
B.
Break up the image processing across multiple dynos.
Answers
C.
Move the app to a Private Space.
C.
Move the app to a Private Space.
Answers
D.
Change the type of dynos to standard-2x.
D.
Change the type of dynos to standard-2x.
Answers
Suggested answer: D

Explanation:

Reference:

Total 185 questions
Go to page: of 19