70special - Ends in 0d 00h 00m 00s - Coupon code: 70special

Note! Heroku-Architecture-Designer has been withdrawn. The new exam code is Heroku-Architect

Heroku-Architecture-Designer Practice Exam Questions with Answers Salesforce Certified Heroku Architect(WI23) Certification

Question # 6

A client wants to migrate their on-premise application to Heroku. The application maintains a local, in-memory cache for its data store to improveperformance.

What should an Architect advise the client about running the application on Heroku?

A.

The application should declare its in-memory cache as a separate process type to preserve it across deploys.

B.

All of the application's web dynos will share a single in-memory cache.

C.

The application should replicate its in-memory cache to a local disk to preserve it across deploys.

D.

The application's in-memory cache might be cleared at any time.

Full Access
Question # 7

If an Organization member has the operator privilege on an app, that means the user can:

A.

Transfer the app to someone else

B.

Add a paid add-on

C.

Remove a member from the Organization account

D.

Deploy the app

Full Access
Question # 8

According to the Twelve-Factor methodology, which best practice helps minimizethe gap between development and production?

A.

Using the same backing services in all of an application's environments.

B.

Configuring application logging to write stdout.

C.

Executing long-running tasks as background processes.

D.

Writing processes that are fast to start up and gracefully shut down

Full Access
Question # 9

Aclient has a data Ina SAP data store. The client uses Heroku External Objects to expose Heroku Postgres tables in their Salesforce org. They want to perform custom transformations on the SAP data and then expose the transformed data in their Salesforce org. Which solution should an Architect recommend?

A.

Use Salesforce Connect to perform any necessary transformations on Vie SAP data and sync the transformed data to the Salesforce org.

B.

Use Heroku Connect to sync the SAP data to Heroku Postgres and then perform any necessary transformations Ensure the transformes data is in a table that is exposed in the Salesforce org.

C.

Use an ETL tool to sync the SAP data to Heroku and then perform any necessary transformations. Ensure the transformes data is in a table that is exposed in the Salesforce org.

D.

Perform in-place transformations on the data in SAP and then use Heroku Connect to sync the SAP data to Heroku Postgres. Ensure the transformed data is in a table that is exposed in the Salesforce org.

Full Access
Question # 10

A platform as a service (PaaS) is:

A.

A monthly bare-metal server rental service

B.

A way to deliver hardware and software tools, such as those needed for application development, to users as a service

C.

A service to help you buy and install your own server hardware

D.

A piece of software in the cloud that you can use just by logging in

Full Access
Question # 11

Which technology do SalesforceREST APIs use for authentication?

A.

Basic usernames and passwords

B.

OAuth

C.

SAML

D.

Pre-shared keys

Full Access
Question # 12

Heroku add-ons are cool because they:

A.

Give you the ability to add complex functionality to your application without having to manage the underlying software or infrastructure.

B.

Accessorize your dynos with over-clocked CPU power and faster I/O speeds

C.

Can be provisioned easily from the Heroku Enterprise Flea Market system.

D.

Cost nothing — billing is easy because they're always provided at no additional cost with every Heroku Enterprise account.

Full Access
Question # 13

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

B.

Private Space Peering

C.

Private Space VPN connections

D.

Heroku Connect

Full Access
Question # 14

At Universal Containers(UC), a developer named Yuichiro wrote a PHP application that, in production, uses a MySQL database. Yuichiro is onboarding Mary, a new UC developer, who is setting up her development environment. Yuichiro asks Mary to:

1) install the related PHP libraries manually so the application will run;

2) use MongoDB, instead of MySQL, in the development environment.

According to the Twelve-Factor methodology, which changes should an Architect recommend?

A.

Explicitly declare code dependencies in theapplication's environment variables and use the same type of database in both development and production.

B.

Persist code dependencies in the application's production database. Use the same type of database locally to ensure that the dependencies are accessible.

C.

Recursively determine code dependencies on application startup and maintain separate Git branches for the MongoDB- and MySQL- compatible versions of the application.

D.

Explicitly declare code dependencies in the application's source and use thesame type of database in both development and production.

Full Access
Question # 15

The Heroku CLI give you the ability to:

A.

Leverage the most powerful interface in the galaxy to have complete control over a fully operational battle station

B.

Install your own Heroku instance on toyour on-prem servers

C.

Use Heroku with an expressive and powerful toolset on the command line

D.

Make a mean cup of Java

Full Access
Question # 16

Universal Containers (UC) has a front-end web application and a back-end service application running on Heroku. The applications are running in the Common Runtime. Now, UC wants to prevent any public access to the back-end application. Which two Heroku features should an Architect propose?

A.

Private Space VPN Connections

B.

Private Spaces DNS Service Discovery

C.

Heroku Internal Routing

D.

Apache Kafka on Heroku

Full Access
Question # 17

Which is a characteristic of an add-on that is "available" for applications in Private Spaces but not "installable" in a Private Space?

A.

The add-on always runs in the same Private Space as theprovisioning application.

B.

The traffic between the provisioning app and the add-on will travel across the public Internet.

C.

The add-on will always run in the same region, but not in the same Private Space, as the provisioning application.

D.

The add-on's data will always be stored in the same Private Space as the provisioning application.

Full Access
Question # 18

Part of a client'sdesign is the ability to easily share between two applications running on Heroku.

What should an Architect recommend?

A.

Attach a single storage add-on, such as Heroku Postgres, to both applications.

B.

Create Foreign Data Wrappers to expose the tables from one database to another.

C.

Provision Heroku Connect to sync the data into a custom object in Salesforce.

D.

Provision Apache Kafka on Heroku to easily stream the data between the two apps.

Full Access
Question # 19

Universal Containerswould like to provide Field Service Technicians the ability to capture details and customer approval on completed work so that the details can be compiled and sent to the customer electronically

What should a Consultant recommend to meet this requirement?

A.

Create a custom report.

B.

Create a Process Builder to generate a report.

C.

Use the standard Work Order email template.

D.

Use the standard Service Report

Full Access
Question # 20

A client has data in a Heroku Postgres table. They want to generate analytics based on the table and make the results available in their Salesforce org. Their Salesforce administratorwants to minimize the amount of data that is written to Salesforce to accomplish this. Which strategy should an Architect recommend on this scenario?

A.

Use Heroku Connect to sync the Heroku Postgres table to the Salesforce org, and generate analytics fromthe Salesforce org.

B.

Use the Heroku application to generate analytics, and write the results to a separate Heroku Postgres table-Expose that table to the Salesforce org with Heroku External Objects.

C.

Use the Heroku application to generate analytics, and write the results to the Salesforce org with the Salesforce Bulk API.

D.

Use the Heroku application to generate analytics and write them to a separate Heroku Postgres table. Sync that table to the Salesforce org with Heroku Connect.

Full Access
Question # 21

What is a Heroku dyno?

A.

An on-prem server that you can install in a rack at your nearest co-location facility

B.

Your application code compiled and ready to be served to a variety of web clients

C.

A specialized dinosaur monitoring service delivered from the cloud

D.

A managed runtime container with a Linux operating system underneath

Full Access
Question # 22

A web application on Heroku wants to surface Salesforce data. All users of the web application will:

1) Authenticate using SSO with Salesforce.

2) Have user records in Salesforce.

What architecture should be recommended in order to maintain the Salesforce security model already in place?

A.

Use Heroku Connect to sync the Salesforce data and Salesforce security model to Heroku Postgres.

B.

Have the application query Salesforce data and the security model directly using a cached admin credential.

C.

Use Heroku Connect, with a per-user authentication model, to sync the Salesforce data to Heroku Postgres.

D.

Have the application query Salesforce data directly through the Salesforce APIs as the running user.

Full Access
Question # 23

Universal Containers has a Heroku Private Space with a VPN connection to their on-premise network. They want their remote employees to be able to access their Heroku applications using a VPN connection only.

Which solution should an Architect recommend?

A.

Clone the Heroku applications to a second Private Space, and configure its VPN for remote employees.

B.

Enable remote employees to VPN into the company's on-premise network.

C.

Configure a second VPN connection for the Private Space that remote employees can use.

D.

Add all remote employees to an Enterprise Team, and configure it to connect to the Private Space via SSO.

Full Access
Question # 24

Dispatchers at Universal Containers want to ensure the Resource being assigned to a Work Order has the correct training.

What should a Consultant implement to accomplish this requirement?

A.

Set up Skill Requirements. DefineWork Types. Set up Routing Rules

B.

Define Skills, Set up Skill Requirements, and Set up Resource Skills

C.

Set up Service Locations, Set up Location Skills. Define work Types

D.

Define Work Types, Define Work Order Status. Set up Resource Skills

Full Access
Question # 25

A Heroku application uses Heroku Connect to integrate with data from a Salesforce org. Since then, several fields from the Salesforce objects that were mapped using Connect have been removed. As a result, the development team will reload the mapping using Heroku Connect.

What is an implication of reloading the mapping?

A.

The mapped tables in Heroku Postgres will continue to store the previously synchronized data, and synchronization will restart normally.

B.

The mapped tables in Heroku Postgres will be truncated as part of the reload action. The data in removed fields will be lost, and synchronization will pause until manually restarted.

C.

The mapped tables in Heroku Postgres will continue to store the previously synchronized data, but synchronization will pause until manually restarted.

D.

The mapped tables in Heroku Postgres will be truncated as part of the reload action. The data in removed fields will be lost, and synchronization will restart normally.

Full Access
Question # 26

Universal Containers (UC) has a Heroku application that runs in Virginia, in the U.S., that uses Apache Kafka on Heroku. They have deployed a copy of the app in Asia. Now, both apps need a messaging backbone that will support multi-region distribution.

What is the least complex architecture that an Architect should recommend?

A.

Deploy a multi-region version of Apache Kafka on Heroku.

B.

Use Heroku's multi-tenant Kafka Basic plan.

C.

The app in Asia should write to the Kafka instance in Virginia.

D.

Provision a secondKafka add-on in Asia. Each instance of the app should sync with each other.

Full Access
Question # 27

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 can only access fieldsand objects that its associated Salesforce integration user can access.

B.

Heroku Connect does not support all Salesforce objects and fields.

C.

Heroku Connect does not provide an API.

D.

Heroku Connect cannot sync custom objects.

Full Access