Salesforce Architect Heroku-Architect Practice Test Engine Try These 185 Exam Questions [Q80-Q102]

Share

Salesforce Architect Heroku-Architect Practice Test Engine: Try These 185 Exam Questions

Guaranteed Success in Salesforce Architect Heroku-Architect Exam Dumps


Salesforce Certified Heroku Architect exam tests the candidates' knowledge and skills in various areas, including Heroku architecture, Heroku data services, Heroku runtime, Heroku add-ons, Heroku tools, and Heroku security. Heroku-Architect exam consists of 60 multiple-choice questions, and the candidates have 105 minutes to complete the exam. The passing score for the exam is 68%.

 

NEW QUESTION # 80
A client wants to use Heroku Connect to sync data bidirectionally between a Salesforce org and a Heroku Postgres database.
In this scenario, which two are advantages to setting a custom External Identifier field in the Heroku Connect mapping? (Choose two.)

  • A. External IDs improve speed when inserting multiple related objects.
  • B. External IDs are required to enable bidirectional synchronization.
  • C. External IDs simplify the mapping of polymorphic relationships in the Salesforce org.
  • D. External IDs prevent the creation of orphaned duplicates in Heroku Postgres.

Answer: B,D


NEW QUESTION # 81
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. Adjust Scheduling Policy
  • B. Customer Entitlements
  • C. Knowledge Base
  • D. Dispatching

Answer: A,C,D


NEW QUESTION # 82
Which of the following is a Heroku CLI command?

  • A. git push heroku master
  • B. heroku new
  • C. heroku create
  • D. git push

Answer: C


NEW QUESTION # 83
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 config vars.
  • B. On startup, the application's source code fetches and installs any dependencies that are missing according to the application's list of dependencies.
  • C. On deployment, Heroku fetches and installs any dependencies that are missing according to the application's list of dependencies
  • D. The application's database configuration is stored in the application's Profile

Answer: A,C

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


NEW QUESTION # 84
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. Enable compaction on the topic to drop older messages, which will drop older messages with the same key.
  • B. 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.
  • C. Upgrade to a larger Apache Kafka for Heroku plan, which has greater data capacity.

Answer: B


NEW QUESTION # 85
Which two statements describe characteristics of Private Space Logging? (Choose two.)

  • A. Log entries are collated and forwarded by Heroku's Logplex router.
  • B. Log entries are forwarded as HTTPS POST requests.
  • C. Log entries can be forwarded to only one logging service.
  • D. Log entries can be forwarded to up to three logging services.

Answer: B,D


NEW QUESTION # 86
A healthcare services client is requesting an architecture for a set of applications: one is a marketing application, and the other two are of customer service applications that allow for customers to interact with their healthcare records. The marketing application must be able to scale up within seconds in response to traffic spikes. The client wants to be able to deploy each of these applications to the U.S. East Coast and EMEA.
Which applications should be deployed into which Heroku runtime?

  • A. The marketing application into the Common Runtime; customer service applications into Private Spaces
  • B. The marketing application into the Common Runtime; customer service applications into Shield Private Spaces
  • C. The marketing application into Private Spaces; customer service applications into separate Private Spaces
  • D. The marketing application into Private Spaces; customer service applications into Shield Private Spaces

Answer: D

Explanation:
-https://devcenterherokucom/articles/private-spaces#trusted-ip-ranges


NEW QUESTION # 87
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. Work Types
  • B. Assets
  • C. Service Report Templates
  • D. Product Templates

Answer: A,C


NEW QUESTION # 88
A customer runs Production Check on an application from the Dashboard. Which two runtime issues does it check for? Choose 2 answers.

  • A. Worker dyno scale: ensuring at least 1 worker dyno is available.
  • B. CDN ensuring a CDN is available to the web dynos
  • C. Dyno redudancy: ensuring at least 2 web dynos are available
  • D. Production-tier database: ensuring a production-tier database is being used

Answer: C,D

Explanation:
- https://devcenter.heroku.com/articles/heroku-connect-faq#can-i-use-sharing-rules-to-restrict-record-visibility


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

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

Answer: A,C

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


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

  • A. Heroku Private Spaces and Private Space VPN Connections, using a compatible VPN endpoint on Azure
  • B. Heroku Shield Private Spaces and Internal Routing, using Azure's built-in VPN endpoint
  • C. Heroku Private Spaces and Private Space Peering, using Azure's VPC Peering.
  • D. Heroku Private Spaces and Private Space VPN Connections, using Azure's built-in VPN endpoint.

Answer: A

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


NEW QUESTION # 91
A client wants to create a scalable set of microservices that communicate with each other, where multiple microservices have a public REST API.
Which architecture strategy allows this on Heroku?

  • A. Each microservice is a separate process type in a single Heroku app. The microservices communicate by using Redis as a message bus.
  • B. Each microservice is a separate private space. The microservices communicate by using DNS Service Discovery.
  • C. Each microservice is a separate process in a single Heroku app. The microservices communicate by using shared memory.
  • D. Each microservice is a separate Heroku app. The microservices communicate by using Apache Kafka as a message bus.

Answer: B

Explanation:
- httDs://devcenterheroku.com/artJcles/event-driven-microservices-with-aDache-kafka


NEW QUESTION # 92
Universal Containers (UC) has configured SSO for their Heroku Enterprise Team using an identity provider (IdP).
When a new employee joins the company, how should their Heroku account be created?

  • A. The employee should create a new Heroku account with the exact email address listed in their IdP record.
  • B. An administrator of the Enterprise Team creates the Heroku account with the exact email address listed in the employee's IdP record.
  • C. A Heroku account is created for the employee automatically the first time they log in to Heroku via SSO.
  • D. No account creation is required, because all SSO users in a particular Enterprise Team are associated with a single Heroku account.

Answer: C

Explanation:
https://devcenterheroku com/artJcles/using-sso-services-with-heroku#end-user-account-creation-and-removal


NEW QUESTION # 93
Universal Containers wants their Field Technicians to indicate if any of their Service Appointments are at risk of not being completed on time. They would like forthis to be achieved on a mobile device using a Quick Action What should a Consultant recommend to achieve this requirement?

  • A. Update the Service Appointment field "In Jeopardy"
  • B. Reschedule the Service Appointment for later
  • C. Update the Service Appointment Status field.
  • D. Update the Service Appointment Chatter feed.

Answer: C


NEW QUESTION # 94
A client has a web application that persists data to a local JSON file. They are migrating the application to Heroku. In order for the application to conform to the Twelve-Factor methodology, what changes should an Architect recommend?

  • A. The application should persist the data to a local SQLite database.
  • B. The application should use at least 2 dynos to ensure that the JSON file is highly available.
  • C. The application should persist the data to a database add-on.
  • D. The application should be stateless and therefore not persist data at all.

Answer: C


NEW QUESTION # 95
A client is planning to deploy an application to Heroku. The client's IT department requires all applications to be hosted from Australia, where their main office is located. Regulators in Australia require keystroke logs of all engineers who create interactive sessions for the application.
Which should an Architect recommend in this scenario?

  • A. Deploy the application to a Shield Private Space in the Sydney region.
  • B. Deploy the application to a Private Space in the Sydney region with Internal Routing enabled.
  • C. Deploy the application to the Common Runtime in the Sydney region.
  • D. Deploy the application to a Private Space in the Sydney region with Private Space Logging enabled.

Answer: A


NEW QUESTION # 96
Universal Containers is looking to implement Entitlement Management to meet the following requirements:
1) Any employee from the customer account is eligible for support.
2) Specific purchased products are eligible for support What Objects should be set up for Entitlement Management?

  • A. Accounts and Service Contracts
  • B. Contacts and Assets
  • C. Accounts and Assets
  • D. Contacts and Service Contracts

Answer: C


NEW QUESTION # 97
Which two logs and logging recommendations are prescribed by the Twelve-Factor app methodology? Choose 2 answers.

  • A. Logs from all processes and backing services should be aggregated together.
  • B. Logs should be written to a shared file system for scalability.
  • C. Apps should not concern themselves with routing or storing logs
  • D. Apps should only keep a limited, rolling buffer of logs available

Answer: A,C

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


NEW QUESTION # 98
A client is writing a Heroku application that requires compliance with PCI DSS Level 1. To accomplish this, they deploy an application to the Shield Private Space. Which statement is true about the application?

  • A. The Shield Private Space guarantees that the application is compliant with PCI DSS Level 1, assuming the application uses only Shield Postgres databases
  • B. The Shield Private Space guarantees that the application is compliant with PCI DSS Level 1
  • C. The application is definitely not compliant with PCI DSS Level 1. because Shield Private Spaces do not provide compliance with it.
  • D. The application might still violate PCI DSS Level 1 even though it is deployed to a Shield Private Space

Answer: D

Explanation:
- https;//devcenter.herokuxom/articles/usjng-sso-services-witri-heroku#prerequisites-for-sso-with-heroku


NEW QUESTION # 99
Universal Containers would like to report on the volume of products installed within a specific timeframe. What solution will help meet the customer's requirement?

  • A. Utilize Field History Tracking on Asset.
  • B. Utilize a Work Order related list on Asset
  • C. Utilize a custom "Installation Date" field on Asset
  • D. Utilize the standard "Installation Date" field on Asset.

Answer: D


NEW QUESTION # 100
Universal Containers provides prompt service and has multiple service levels (or different customers Over 50% of Service Appointments are created on the sameday they need to be completed As a result, a Technician's daily schedule can change multiple times throughout the day What method of dispatching should a Consultant recommend implementing?

  • A. Automatically Dispatch Service Appointments using Drip Feed.
  • B. Automatically schedule unscheduled services to available Resources
  • C. Automatically change the status to Dispatched of all Service Appointments.
  • D. Automatically run Optimization Background Job every hour.

Answer: D


NEW QUESTION # 101
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. Assign the existing Work Order to a Crew.
  • B. Create a new Service Appointment and assign a Crew.
  • C. Assign the existing Work Order to each staff member
  • D. Assign the existing Service Appointment to a Crew.

Answer: B


NEW QUESTION # 102
......

Test Engine to Practice Heroku-Architect Test Questions: https://examtorrent.actualtests4sure.com/Heroku-Architect-practice-quiz.html