Aug-2024 Realistic Heroku-Architect Exam Dumps with Accurate & Updated Questions [Q71-Q94]

Share

Aug-2024 Realistic Heroku-Architect Exam Dumps with Accurate & Updated Questions

Heroku-Architect Exam Dumps - PDF Questions and Testing Engine


Salesforce Heroku-Architect exam is a certification test designed to assess your knowledge and expertise in building and deploying applications on the Heroku platform. As a Salesforce Certified Heroku Architect, you will be recognized for your ability to design and implement scalable, secure, and high-performance web applications using Heroku. Salesforce Certified Heroku Architect certification is ideal for developers and architects who want to demonstrate their skills in developing cloud-native applications using the Heroku platform.

 

NEW QUESTION # 71
Which two Heroku features require Heroku Enterprise Teams? (Choose two.)

  • A. Fire-grained app access controls
  • B. Single Sign-on
  • C. Paid add-on plans
  • D. Heroku Pipelines

Answer: A,D


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

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

Answer: B,D

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


NEW QUESTION # 73
Which two features of the Heroku platform require Private Spaces? Choose 2 answers.

  • A. Trusted IP ranges
  • B. Internal Routing
  • C. Apache Kafka on Heroku
  • D. Automated Certificate Management

Answer: A,C

Explanation:
-
https://devcenter.heroku.eom/articles/private-spaces#trusted-ip-ranges


NEW QUESTION # 74
A hospital wants to build a mobile app that allows patients to check the status of submitted insurance claims, which the hospital stores in Salesforce Health Cloud. The app's back end will run on Heroku.
Which two measures should an Architect recommend to help ensure that the app is compliant with HIPAA?
(Choose two.)

  • A. Ensure that the back-end application's codeencrypts all claim data before writing it to a Heroku Postgres database.
  • B. Use Heroku Shield Connect to sync claim data from Salesforce to a Heroku Postgres database.
  • C. Ensure that the mobile app can only run when on the hospital's intranet, which is connected to the back end's Shield Private Space via VPN.
  • D. Use only Heroku Shield Postgres databases to storeclaim data outside of Salesforce Health Cloud.

Answer: A,B


NEW QUESTION # 75
Universal Containers is building a new marketing website on Heroku.
They want to capture user information on the site and have that data flow into Salesforce for followup.
Which Heroku features should an Architect recommend to accomplish this?

  • A. Heroku Redis and Heroku Teams.
  • B. Heroku Dataclips and the Heroku Platform API.
  • C. Heroku Conned and Heroku Postgres.
  • D. HeroKu Private Spaces and Private Space Peering.

Answer: C


NEW QUESTION # 76
Universal Containerswould like toenforce a 48-hour SLA to ensure that Technicians perform certain follow-up activities after they leave a customer site The starting point of the SLA is when the Work Order Status is set to
"Technician Wrap Up." The Technician is required to provide confirmation that wrap up is completed.
Which three configurations should a Consultant implement to ensure this can be achieved? (Choose three.)

  • A. Create custom fields to capture that the Wrap Up Activities have been completed.
  • B. Create a Milestone which has entry criteria (or Status = Technician Wrap Up.
  • C. Create a Process to call a Flow that completes the Milestone when the Wrap Up is complete.
  • D. Create aWorkflow toclose the Milestone when the Wrap Up is complete
  • E. Create an Entitlement Process which has entry criteria for Status = Technician Wrap Up

Answer: B,D,E


NEW QUESTION # 77
A client requires that their web application's logs are accessible only from within the same isolatednetwork 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. Enable Internal Routing to prevent the application's logs from being forwarded outside of the Private Space.
  • C. 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.
  • D. Deploy the application to a Private Space. Provide the Private Space's stable outbound IPs to Heroku's Logplexrouter to block all logs originating fromthe Private Space.

Answer: C


NEW QUESTION # 78
A Field Technician from Universal Containers arrived onsite for an appointment, and unfortunately the customer was not present UC wants to ensure they cantrack these customer no-show events for future process improvement What process should a Consultant recommend to handle this situation?

  • A. Set the existing Service Appointment status to In Progress; Create a new Work Order and Service Appointment for the follow-up trip.
  • B. Set the existing Service Appointment status to Complete; Create a new Work Order and Service Appointment for the follow-up trip.
  • C. Set the existing Service Appointment status to Cannot Complete: Create a new Work Order Line Item for the follow-up trip
  • D. Set the existing Service Appointment status to Cannot Complete; Create a new Service Appointment against the same Work Order for the follow-up trip.

Answer: D


NEW QUESTION # 79
A client runs an application on a background worker dyno. The application allows its users to request personalized information as a PDF. At peak usage, the app processes millions of requests at once. The resulting number of requests has caused a bottleneck that is impacting its performance.
Which two solutions can an Architect recommend to resolve the bottleneck and improve performance? (Choose two.)

  • A. Move the application to a Private Space.
  • B. Increase the number of workers to consume the job faster.
  • C. Add Heroku Redis as a job queue.
  • D. Add a CDN add-on from the Elements marketplace.

Answer: A,B


NEW QUESTION # 80
Which two conventions of the Heroku platform reflect the Twelve-Factor methodology's recommendation to "execute the app as one or more stateless processes?" (Choose two.)

  • A. Log messages from each of an app's dynos are kept separate from each other.
  • B. Heroku apps define process types in a Procfile.
  • C. Dynos have an ephemeral filesystem.
  • D. A Heroku app's config vars are deleted on deploys and app restarts.

Answer: B,D


NEW QUESTION # 81
Universal Containers would like to avoid H12 ("request timeout") and H22 ("connection limit reached") errors when running an e-commerce retail site that must process millions of inbound requests during their one-day semi-annual sale. Which two solution measures should an Architect recommend to prepare for the semi-annual sale?

  • A. Enable and load test autoscaling
  • B. Implement load balancing using Kafka
  • C. Engage with Heroku Support to implement load testing
  • D. Perform load test using 10% sample size

Answer: A,C

Explanation:
- https://devcenter.heroku.com/artlcles/event-driven-microservlces-with-apache-kafka


NEW QUESTION # 82
An app has two web dynos, Dyno A and Dyno B. The app receives a request, which is routed to Dyno A. A second request is sent from the same client. Which Dyno is the request routed to?

  • A. The request is definetly routed to Dyno B.
  • B. The request is routed randomly to Dyno A orDyno B
  • C. The request is definetly routed to Dyno A.
  • D. The request is routed to Dyno A if it hasfinished handling the first request

Answer: B

Explanation:
- https://devcenter.heroku.com/articles/internal-routing


NEW QUESTION # 83
The Disaster at Universal Containers would like to schedule Service Appointments from the Dispatcher's Console while taking the Scheduling Policy intoconsideration.
Which three options are available to the Disaster? (Choose three.)

  • A. Select multiple Service Appointment from the list and bulk schedule them Select a Service Appointment from the list, press the "Edit" action and allocate the Resource
  • B. Create a Workflow to close the Milestone when the Wrap Up is complete.
  • C. Select a Service Appointments from the list and press the "Schedule" action.
  • D. Select a Service Appointment from the list, press the "Candidates" action, and select the best time slot.
  • E. Select a Service Appointment from the list, press the "Change Status" action and "Dispatch".

Answer: A,C,E


NEW QUESTION # 84
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 guarantees the physical location of its control surface APIs.
  • B. Heroku does not control where add-on providers store data.
  • C. Heroku support can configure add-ons for specific data residency needs.
  • D. Data residency for add-ons is covered under Salesforce's GDPR compliance.

Answer: C


NEW QUESTION # 85
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. Move the app to a Private Space.
  • B. Break up the image processing across multiple dynos.
  • C. Change the type of dynos to standard-2x.
  • D. Add additional worker dynos.

Answer: C


NEW QUESTION # 86
Universal Containers collects sensor data from millions of sensors that are located around the World. Now. they want to process this data on Heroku. What are three advantages of using a microservices architecture with Apache Kafka on Heroku in this scenario? Choose 3 answers.

  • A. Individual services can efficiently communicate with each other using REST APIs.
  • B. Individual services can be scaled easily for high-volume event processing
  • C. Kafka is highly available and fault-tolerant
  • D. Consumers and producers can be scaled independently.

Answer: B,C,D

Explanation:
- https://www.heroku.com/lech-sessions/get-started-with-apache-kafka


NEW QUESTION # 87
Universal Containers uses Heroku Connect to sync their Salesforce org'sdata with Heroku Postgres.
Periodically, they write a very large set ofchanges that needs to be fully replicated between these two systems.
Which two sets of actions should an Architect propose? (Choose two.)

  • A. Pause Heroku Connect then make the changes directly in the Salesforce org. Then allow Heroku Connect to use the Salesforce Bulk API to sync them to Heroku Postgres.
  • B. Use Data Loader to write the changes to the Salesforce org. Then allow Heroku Connect to sync them to Heroku Postgres.
  • C. Make the changes directly in Heroku Postgres. Then allow Heroku Connect to use the Bulk API to sync themto the Salesforce org.
  • D. Make the changes directly in Heroku Postgres. Then allow Heroku Connect to expose them to the Salesforce org using Heroku External Objects.

Answer: C,D


NEW QUESTION # 88
Anexisting 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?

  • A. Hardcode the results of the query into app logic
  • B. Restart the Heroku Postgres server to reclaim cache
  • C. Add a read-only HerokuPostgres follower
  • D. Create a database caching layer

Answer: C,D

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


NEW QUESTION # 89
Which of the following is NOT an advantage of data replication over data proxies?

  • A. A replicated data set offloads processing and requests from an origin data server.
  • B. A replicated data set is always and immediately in sync with the origin data
  • C. A replicated data set reduces data access latency.
  • D. A replicated data set supports bidirectional writes.

Answer: B


NEW QUESTION # 90
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?

  • A. Create a new Service Appointment and assign a Crew.
  • B. Assign the existing Work Order to a Crew.
  • C. Assign the existing Work Order to each staff member
  • D. Assign the existing Service Appointment to a Crew.

Answer: A


NEW QUESTION # 91
A customer's IT department will not allow VPN access through their on-premise gateway. Users need to be able to access trusted Heroku applications only when they are in the office. These applications are deployed to a Heroku Private Space.
Which two Private Spaces features should an Architect recommend to enable on-premise users to gain the access they need? (Choose two.)

  • A. Trusted IP ranges
  • B. Stable outbound IP addresses
  • C. VPC peering
  • D. Internal routing

Answer: A,B


NEW QUESTION # 92
The best use of Canvas apps is to:

  • A. Display real estate photos in Salesforce for house listings
  • B. All of these
  • C. Display third-party apps in Salesforce
  • D. Render custom widgets on Chatter feeds

Answer: B


NEW QUESTION # 93
Universal Containers (UC) uses Apache Kafka on Heroku to stream shipment inventory data in real time throughout the world. A Kafka topic is used to send messages with updates on the shipping container GPS coordinates as they are in transit. UC is using a Heroku Kafka basic-0 plan. The topic was provisioned with 8 partitions, 1 week of retention, and no compaction. The keys for the events are being assigned by Heroku Kafka, which means that they will be randomly distributed between the partitions.
UC has a single-dyno consumer application that persists the data to their Enterprise Data Warehouse (EDW). Recently, they've been noticing data loss in the EDW.
What should an Architect with Kafka experience recommend?

  • A. Use Heroku Redis to store message receipt information to account for "at-least" once delivery, which will guarantee that messages are never processed more than once. Scale up the consumer dynos to match the number of partitions so that there is one process for each partition.
  • B. Upgrade to a larger Apache Kafka for Heroku plan, which has greater data capacity.
  • C. Enable compaction on the topic to drop older messages, which will drop older messages with the same key.

Answer: A


NEW QUESTION # 94
......

Pass Salesforce Heroku-Architect Exam Quickly With Fast2test: https://www.fast2test.com/Heroku-Architect-premium-file.html

Heroku-Architect Dumps - The Sure Way To Pass Exam: https://drive.google.com/open?id=1iupxCL7AWxljPEH5yGp62kq8q-j_u1Yv

Contact Us

If you have any question please leave me your email address, we will reply and send email to you in 12 hours.

Our Working Time: ( GMT 0:00-15:00 ) From Monday to Saturday

Support: Contact now 

日本語 Deutsch 繁体中文 한국어