
[2023] Heroku-Architect PDF Questions - Perfect Prospect To Go With Exam4PDF Practice Exam
Salesforce Heroku-Architect Pdf Questions - Outstanding Practice To your Exam
NEW QUESTION 86
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.
- B. 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 Private Space with a Private Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
- D. Build the app in the Common Runtime, use a Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
Answer: B
NEW QUESTION 87
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. Divide each video processing task across multiple web dynos to mitigate added CPU load.
- B. Delegate video processing tasks to the app's staging version to remove load from the production app.
- C. Add a new process type for worker dynos that pull video processing jobs from a queue.
- D. Attach a video processing add-on from the Heroku Elements Marketplace to the application.
Answer: C,D
NEW QUESTION 88
Universal Containers has recently experienced a higher volume of traffic on their mobile app hosted on Heroku. When Universal Containers was running 4 standard-2x dynos with 1 GB RAM each, they encountered multiple H12 ("request timeout") errors. The app never consumed more than 800 MB of RAM. They then switched to performance-m dynos, with 2.5 GB RAM, and set autoscaling to a maximum of 2 dynos. However, they still encountered H12 ("request timeout") errors.
What remediation should an Architect recommend to alleviate this problem?
- A. Replace autoscaling with a manual scaling option of 2.
- B. Add a logging add-on from the Elements marketplace.
- C. Move long-running tasks to worker dynos.
- D. Upgrade to performance-L dynos with 14 GB RAM.
Answer: C
NEW QUESTION 89
Which of the following is NOT an advantage of Salesforce Connect over ETL?
- A. The data is always fetched on demand
- B. If the origin is offline, the data is still available via Salesforce Connect.
- C. Standard protocols like OData can easily proxy external data into Salesforce.
- D. Data security can be enforced using per-user or per-application authentication.
Answer: B
NEW QUESTION 90
The primary benefit of a workflow outbound message over an Apex trigger is:
- A. The message supports different authentication mechanisms
- B. The message can handle every database event.
- C. Messages are completely declarative.
- D. The message can deliver the payload only as SOAP
Answer: C
NEW QUESTION 91
Universal Containers provides installation, repair, and consulting services When Technicians complete the work, they need to provide different reports for the installation, repair, and consulting services.
Which two configurations should a Consultant recommend to meet this requirement? (Choose two )
- A. Product Templates
- B. Assets
- C. Service Report Templates
- D. Work Types
Answer: C,D
NEW QUESTION 92
A healthcare client is creating a web portal for their customers on Heroku, which is sourced from a Salesforce instance. Some of the Salesforce data they wish to display falls under HIPAA compliance, and their auditors have determined this data must be stored encrypted-at-rest. To satisfy this requirement, they have enabled Platform Encryption on Salesforce.
They are investigating Heroku Shield Private Spaces, Shield Dynos, Shield Postgres, and Shield Heroku Connect.
How will Shield Heroku Connect interact with the encrypted fields in Salesforce?
- A. Shield Heroku Connect will be able to synchronize data bidirectionally without additional customization.
- B. Shield Heroku Connect requires customization on the Salesforce side to decrypt the data before transmitting to Heroku.
- C. Shield Heroku Connect will be able to access only cypher text in the fields from Salesforce. They will need to import the encryption key from Salesforce to decrypt to store in Shield Postgres.
- D. Shield Heroku Connect will be able to synchronize data from fields in Salesforce without additional customization, but any writes will need to be encrypted using the Salesforce encryption key first before being written.
Answer: D
Explanation:
- https://devcenter heroku com/articles/heroku-connect-database-tables#encrypted-strmgs
NEW QUESTION 93
A financial reporting application, hosted on an on-premise server, uses a native library (wkhtmltopdf) to convert its HTML reports into PDFs. The app is being migrated to Heroku.
What option should an Architect recommend to enable the Heroku application to use wkhtmltopdf?
- A. Use a custom buildpack to install wkhtmltopdf using apt.
- B. Install the dependency using sudo apt install wkhtmltopdf from .profile in the project root.
- C. Ensure that the Heroku app fetches the wkhtmltopdf library from cloud storage on dyno restart.
- D. Continue to host wkhtmltopdf on-premise, and build a REST API so the library can be invoked from the Heroku app.
Answer: A
NEW QUESTION 94
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?
- A. 12 hours.
- B. One million updates is too many for Heroku Connect to handle; therefore, the sync will fail
- C. 1 hour.
- D. It depends on the sync performance, which can vary from one connection to another.
Answer: D
Explanation:
- https://devcenter.heroku.com/articles/using-sso-services-with-heroku#prerequisites-for-sso-with-heroku
NEW QUESTION 95
A client requires that their web application's logs are accessible only from within the same isolated network as the application itself.
Which solution should an Architect recommend in this scenario?
- A. Deploy the application to a Shield Private Space with Private Space Logging enabled. Forward logs to a destination within the Shield Private Space.
- B. Deploy the application to a Private Space. Connect the Private Space to an on-premise logging system using VPN and specify it as a log drain.
- C. Deploy the application to a Private Space. Enable Internal Routing to prevent the application's logs from being forwarded outside of the Private Space.
- D. Deploy the application to a Private Space. Provide the Private Space's stable outbound IPs to Heroku's Logplex router to block all logs originating from the Private Space.
Answer: B
NEW QUESTION 96
Heroku add-ons are cool because they:
- A. Can be provisioned easily from the Heroku Enterprise Flea Market system.
- B. Accessorize your dynos with over-clocked CPU power and faster I/O speeds
- C. Give you the ability to add complex functionality to your application without having to manage the underlying software or infrastructure.
- D. Cost nothing - billing is easy because they're always provided at no additional cost with every Heroku Enterprise account.
Answer: C
NEW QUESTION 97
Universal Containers wants to ensure that Service Appointments are only assigned to Active Resources. What configuration should a Consultant recommend for the Scheduling Policy?
- A. Match Boolean
- B. Required Resources
- C. Preferred Resources
- D. Match Fields
Answer: A
NEW QUESTION 98
A client has an existing Heroku Connect integration. They would like to extend the integration to ad Attachments (which are related binary files) from a mapped Salesforce object. What advice should an Architect provide?
- A. An additional object mapping must be added for the Attachments table in Heroku Connect.
- B. Heroku Connect does not support binary files: therefore migration must be done using another method
- C. A column of type Binary String must be added manually to the Heroku Postgres table and amend Attachments before binary transfer can be enabled.
- D. A file storage system needs to be added to the Heroku Connect mapping to sync binary files.
Answer: B
Explanation:
-
https://devcenter.heroku.com/articles/using-sso-services-with-heroku#prerequisites-for-sso-with-heroku
NEW QUESTION 99
The Private Spaces feature can be useful if you need to:
- A. Write Apex applications quickly
- B. Ensure that your application's incoming traffic originates from a whitellsted set of IP addresses
- C. None of these
- D. Speed up an application's response time by running it on dynos that are located geographically closer to your customers
Answer: B,D
NEW QUESTION 100
Which two Heroku features require Heroku Enterprise Teams? (Choose two.)
- A. Single Sign-on
- B. Paid add-on plans
- C. Fire-grained app access controls
- D. Heroku Pipelines
Answer: C,D
NEW QUESTION 101
A client's Heroku application is publishing messages to an instance of Apache Kafka on Heroku.
What does a second Heroku application need to do to consume those messages?
- A. Subscribe to the Kafka partition(s) that the messages are being published to.
- B. Convert the publishing application into a stream processor.
- C. Subscribe to the Kafka topic(s) that the messages are being published to.
- D. Join a consumer group that also includes the publishing application.
Answer: A
Explanation:
- https://wwwxloudkarafka.com/blog/2016-11-30-part1-kafka-for-beginners-what-is- apache-kafka.html
NEW QUESTION 102
Universal Containers wants to reduce their mean-time-to-service
Which three Field Service process should a Consultant recommend to accomplish this goal? (Choose three )
- A. Customer Entitlements
- B. Dispatching
- C. Adjust Scheduling Policy
- D. Knowledge Base
Answer: B,C,D
NEW QUESTION 103
A customer wants to sync data between their Salesforce org and Heroku Postgres.
Which two limitations should an Architect remember when recommending Heroku Connect? (Choose two.)
- A. Heroku Connect cannot sync custom objects.
- B. Heroku Connect does not provide an API.
- C. Heroku Connect does not support all Salesforce objects and fields.
- D. Heroku Connect can only access fields and objects that its associated Salesforce integration user can access.
Answer: B,D
NEW QUESTION 104
......
Salesforce Heroku-Architect Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
Online Questions - Outstanding Practice To your Heroku-Architect Exam: https://www.exam4pdf.com/Heroku-Architect-dumps-torrent.html
Practice To Heroku-Architect - Exam4PDF Remarkable Practice On your Salesforce Certified Heroku Architect Exam: https://drive.google.com/open?id=17w9Jlwsf8OlQ2DZi-6W14ALdWAcAecqe

