Universal Containers wants Field Technicians to capture customer authorization via a signature through Salesforce mobile app.
What should a Consultant recommend?
A. Create a Quick Action on the Service Appointment to launch a Visualforce signature page.
B. Create an Approval Process from the Service Appointment for the customer's Authorization.
C. Create a checkbox on the Service Appointment that will capture the customer's Authorization.
D. Create a custom text field to capture the customer's signature on Salesforce mobile app.
Universal Containers has an initiative to increase customer satisfaction by committing preferred resources to accounts and providing prompt service. Which two Scheduling Policies would assist to meet this initiative? (Choose two.)
A. Soft Boundaries
B. High Intensity
C. Emergency Policy
D. Customer First
Universal Containers provides prompt service and has multiple service levels for different customers. Over 50% of Service Appointments are created on the same day 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 schedule unscheduled services to available Resources.
B. Automatically change the status to Dispatched of all Service Appointments.
C. Automatically Dispatch Service Appointments using Drip Feed.
D. Automatically run Optimization Background Job every hour.
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 the application'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 the same type of database in both development and production.
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 the provisioning 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.
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. Increase the number of workers to consume the job faster.
B. Move the application to a Private Space.
C. Add Heroku Redis as a job queue.
D. Add a CDN add-on from the Elements marketplace.
When creating a Private Space, what is a valid reason to specify a region other than the default region?
A. Private Spaces restrict inbound traffic to the current region.
B. Heroku pricing varies by region.
C. Running an application closer to its intended users can reduce latency.
D. Available compute resources vary by region.
Universal Containers has a Heroku app that uses Heroku Connect to sync data with theirSalesforce org. The app makes frequemt updates to the same records over short period of time, and sync speeds have begun to worsen. An Architect recommends using Heroku Connect's Merged Writes algorithm to improve sync speeds. What are 2 implications of using the Merged Writes algorithm in this scenario?
A. Relationships such as circular dependencies are known to cause issues.
B. The Merged Writes algorithm does not support using Salesforce SOAP API
C. The Merged Writes algorithm is more likely to approachSalesforce API rate limits.
D. The Merged Writes algorithm does not support using the Salesforce Bulk API.
Callouts from Salesforce to Heroku can be made using:
A. Corba
B. Web sockets
C. Message bus
D. Apex triggers or outbound messages
Universal Containers has 3 Heroku apps in its microservices and requires that logs for all of the apps be stored in the same location for analysis and alerting purposes. How would they achieve this?
A. Send logs from each app to their own Heroku redis Store, and then combine all logs in a fourth master store.
B. Set up the 3 apps as producers for Apache Kafka on Heroku and save their logs to Kafka
C. Set up a file on the filesystem and share it with all the apps
D. Install a logging add-on for one app and attach it to the other two apps