最新2023年06月09日リアルなARC-101試験問題集解答で有効なARC-101問題集PDF [Q40-Q64]

Share

最新2023年06月09日リアルなARC-101試験問題集解答で有効なARC-101問題集PDF

Salesforce ARC-101試験問題集でPDF問題とテストエンジン

質問 # 40
Northern Trail Outfitters is in the final stages of merging two Salesforce orgs but needs to keep the retiring org available for a short period of time for lead management as it is connected to multiple public web site forms. The sales department has requested that new leads are available in the new Salesforce instance within 30 minutes.
Which two approaches will require the least amount of development effort?
Choose 2 answers

  • A. Use the Composite REST API to aggregate multiple leads in a single call.
  • B. Use the tooling API with Process Builder to insert leads in real time.
  • C. Call the Salesforce REST API to insert the lead into the target system.
  • D. Configure named credentials in the source org.

正解:A、D


質問 # 41
Northern Trail Outfitters is planning to perform nightly batch loads into Salesforce from an external system with a custom Java application using the and the CIO is curious about monitoring recommendations for the jobs from the Technical Architect Which two recommendations will help meet the requirements?
Choose 2 answers

  • A. Visually monitor in the Salesforce UI using the "Bulk Data Load Jobs in Salesforce in the setup menu.
  • B. Use the getBatchInfo method in the Java application to monitor the status of the jobs from the Java application.
  • C. Write the error response from the Bulk API status to a custom error logging object in Salesforce using an Apex trigger and create reports on the object.
  • D. Set the Salesforce debug logs level to "finest" and add the user Id running the job to monitor in the "Debug Logs" in the setup menu.

正解:A、B


質問 # 42
An organization needs to integrate Salesforce with an external system and is considering authentication options. The organization already has implemented SAML, using a third-party Identity Provider for integrations between other systems.
Which use case can leverage the existing SAML integration to connect Salesforce with other internal systems?

  • A. Make formula fields with HYPERLINK() to external web servers more secure.
  • B. A Make Apex REST outbound integrations to external web services more secure.
  • C. Make an API inbound integration from an external Java client more secure.
  • D. Make Apex SOAP outbound integrations to external web services more secure.

正解:A


質問 # 43
Northern Trail Outfitters (NTO) is looking to integrate three external systems that run nightly data enrichment processes in Salesforce. NTO has both of the following security and strict auditing requirements:
1. The external systems must follow the principle of least privilege, and
2. The activities of the eternal systems must be available for audit.
What should an Integration Architect recommend as a solution for these integrations?

  • A. A shared integration user for the three external system integrations.
  • B. A Connected App for each external system integration.
  • C. A shared Connected App for the three external system integrations.
  • D. A unique integration user for each external system integration.

正解:B


質問 # 44
Northern Trail Outfitters has recently experienced intermittent network outages in its call center. When network service resumes, Sales representatives have inadvertently created duplicate orders in the manufacturing system because the order was placed but the return acknowledgement was lost during the outage.
Which solution should an architect recommend to avoid duplicate order booking?

  • A. Use scheduled apex to query manufacturing system for potential duplicate or missing orders.
  • B. Implement idempotent design and have Sales Representatives retry order(s) in question.
  • C. Have scheduled Apex resubmit orders that do not have a successful response.
  • D. Use Outbound Messaging to ensure manufacturing acknowledges receipt of order.

正解:D


質問 # 45
business requires automating the check and update of the phone number type classification (mobile vs. landline) for all in-coming calls delivered to their phone sales agents. The following conditions exist:
1. At peak, their call center can receive up to 100,000 calls per day.
2. The phone number type classification is a service provided by an external service API.
3. Business is flexible with timing and frequency to check and update the records (throughout the night or every 6-12 hours is sufficient).
A Remote-Call-In pattern and/or Batch Synchronization (Replication via ETL: System -> Salesforce) are determined to work with a middleware hosted on custom premise.
In order to implement these patterns and mechanisms, which component should an integration architect recommend?

  • A. Firewall and reverse proxy are required to protect internal APIs and resource being exposed.
  • B. IoConfigure Remote Site Settings in Salesforce to authenticate the middleware.
  • C. ConnectedApp configured in Salesforce to authenticate the middleware.
  • D. An API Gateway that authenticates requests from Salesforce into the Middleware(ETL/ESB).

正解:C


質問 # 46
A large enterprise customer operating in a high regulated industry is planning to implement Salesforce for customer facing associates in both Sales and Service, and back office staff. The business processes that Salesforce supports are critical to the business.
Salesforce will be integrated to multiple back office systems to provide a single interface for associates. Reliability and monitoring of these integrations is required as associates support customers.
Which integration solution should the architect consider when planning the implementation?

  • A. Decouple back office system callouts into separate distinct services that have inbuilt error logging and monitoring frameworks.
  • B. Architect Services in back office systems to support callouts from Salesforce and build reliability, monitoring and reporting capabilities.
  • C. Build a custom integration gateway to support back office system integrations and ensure reliability and monitoring capabilities.
  • D. Leverage Middleware for all back office system integrations ensuring real time alerting, monitoring and reporting capabilities.

正解:D


質問 # 47
Northern Trail Outfitters requires an integration to be set up between one of their Salesforce orgs and an external data source us Salesforce Connect. The external data source supports Open Data Protocol.
Which three configurations should an Integration Architect recommend be implemented in order to secure requests coming from Salesforce?
Choose 3 answers

  • A. Configure Special Compatibility for OData connection,
  • B. Configure a Certificate for OData connection.
  • C. Configure CSRF Protection for OData connection.
  • D. Configure Identity Type for OData connection.
  • E. Configure CSRF Protection on External Data Source.

正解:B、C、D

解説:
https://help.salesforce.com/articleView?id=apex_add_external_data_source.htm&type=5


質問 # 48
An enterprise architect has requested the Salesforce Integration architect to review the following (see diagram & description) and provide recommendations after carefully considering all constraints of the enterprise systems and Salesforce platform limits.

* About 3,000 phone sales agents use a Salesforce Lightning UI concurrently to check eligibility of a customer for a qualifying offer.
* There are multiple eligibility systems that provides this service and are hosted externally. However, their current response times could take up to 90 seconds to process and return (there are discussions to reduce the response times in future, but no commitments are made).
* These eligibility systems can be accessed through APIs orchestrated via ESB (MuleSoft).
* All requests from Salesforce will have to traverse through customer's API Gateway layer and the API Gateway imposes a constraint of timing out requests after 9 seconds.
Which three recommendations should be made?
Choose 3 answers

  • A. Implement a 'Check Update' button that passes a requestID received from ESB (user action needed).
  • B. ESB (Mule) with cache/state management to return a requestID (or) response if available from external system.
  • C. Use Continuation callouts to make the eligibility check request from Salesforce from Lightning UI at page load.
  • D. When responses are received by Mule, create a Platform Event in Salesforce via Remote-Call-In and use the empAPI in the lightning UI to serve 3,000 concurrent users.
  • E. Recommend synchronous Apex call-outs from Lightning UI to External Systems via Mule and implement polling on API gateway timeout.

正解:A、B、C


質問 # 49
A company has an external system that processes and tracks orders. Sales reps manage their leads and opportunity pipeline in Salesforce. In the current state, the two systems are disconnected and processing orders requires a lot of manual entry on sales rep part. This creates delays in processing orders and incomplete data due to manual entry.
As a part of modernization efforts the company decided to integrate Salesforce and the order management system. The following technical requirements were identified:
1. Orders need to be created in real time from salesforce
2. Minimal customization*, and code should be written due to a tight timeline and lack of developer resources
3. Sales reps need to be able to see order history and be able to see most up to date information on current order status.
4. Managers need to be able to run reports in Salesforce to see daily and monthly order volumes and fulfillment timelines.
5. The legacy system is hosted on premise and is currently connected to the Enterprise Service Bus (ESB). The ESB is flexible enough to provide any methods and connection types needed by salesforce team.
6. There are 1000 sales reps. Each user processes/creates on average 15 orders per shift. Most of the orders contain 20-30 line items.
How should an integration architect integrate the two systems based on the technical requirements and system constraints?

  • A. Use Salesforce custom object, custom REST API and ETL.
  • B. Use Salesforce standard object, REST API and ETL.
  • C. Use Salesforce big object, SOAP API and Dataloader.
  • D. Use Salesforce external object and OData connector.

正解:B


質問 # 50
Northern Trail Outfitters' (NTO) Salesforce org usually goes through 8k-10k batches a day to synch data from external sources. NTO's Integration Architec has received requirements for a new custom object, FooBarc, for which 90M records will need to be loaded into the org. Once complete, 20GB (about 30M records) needs to be extracted to an external auditing system.
What should the architect recommend using to meet these requirements in a day?

  • A. Insert using Bulk API 2.0 and query using REST API.
  • B. Insert and query using Bulk API 2.0.
  • C. Insert using Bulk API 1.0 and query using REST API.
  • D. Insert and query using Bulk API 1.0.

正解:B


質問 # 51
An Architect is required to integrate with an External Data Source via a Named Credential with an Apex callout due to technical constraints.
How is authentication achieved?

  • A. Handle authentication in the code.
  • B. Connect via Salesforce Connect.
  • C. Connect via Communities.
  • D. Handle authentication with login flows.

正解:D

解説:
https://help.salesforce.com/articleView?id=named_credentials_define.htm&type=5


質問 # 52
An Integration Architect has built a solution using REST API, updating Account, Contact, and other related information. The data volumes have increased, resulting in higher API calls consumed, and some days the limits are exceeded. A decision was made to decrease the number of API calls using bulk updates. The customer prefers to continue using REST API to avoid architecture changes.
Which REST API composite resources should the Integration Architect use to allow up to 200 records in one API call?

  • A. Composite
  • B. Batch
  • C. SObject Collections
  • D. SObject Tree

正解:D

解説:
https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobject_tree.htm


質問 # 53
Northern Trail Outfitters is creating a distributable Salesforce package for other Salesforce orgs within the company. The package needs to call into a custor Apex REST endpoint in the central org. The security team wants to ensure a specific integration account is used in the central org that they will authorize after installation of the package.
Which three items should an architect recommend to secure the integration in the package?
Choose 3 answers

  • A. Use an encrypted field to store the password that the security team enters and use password management for external orgs and set the encryption method to TLS 1.2. Use the Auth Provider configured and select the identity type as Named Principal with OAuth 2.0 as the protocol and
  • B. Create a connected app in the central org and add the callback URL of each org the package is installed in to redirect to after successful authentication.
  • C. Select Start Authentication Flow on Save.
  • D. Contact Salesforce support and create a case to temporarily enable API access for managed packages.
  • E. Create an Auth provider in the package and set the consumer key and consumer secret of the connected app in the central org.

正解:B、C、E


質問 # 54
A conglomerate is designing a Lightning Web Component (LWC) to display transactions aggregated from different sources. Their current system landscape is as follows:
1. Transactions are created at any time through their various on-premise and cloud-based systems.
2. All necessary transactions are replicated to a custom Transaction object in Salesforce. It is updated periodically so it only has a subset of the necessary transactions between updates.
3. Middleware supports publish-subscribe interactions and provides RESTful Enterprise APIs that can retrieve transactions from on-premise and cloud-based systems.
The company wants to address a usability concern regarding incomplete data displayed on the LWC component. What should the Integration Architect specify so the LWC will be able to display all the required transactions?

  • A. Call the Enterprise APIs directly from the LWC's JavaScript code and redisplay the LWC on receipt of the API response.
  • B. Publish a Platform Event, have the middleware subscribe and update the custom object on receipt of Platform Event.
  • C. Let the Lightning Data Service with an @wire adapter display new values when the custom object records change.
  • D. Use the Continuation class to call the Enterprise APIs and then process the response in a callback method.

正解:A


質問 # 55
Northern Trail Outfitters has a requirement to encrypt few of widely used standard fields. They also want to be able to use these fields in workflow rules.
Which security solution should an Integration Architect recommend to fulfill the business use case?

  • A. Classic Encryption
  • B. Platform Shield Encryption
  • C. Cryptography Class
  • D. Data Masking

正解:B

解説:
https://help.salesforce.com/articleView?id=data_mask_overview.htm&type=5
https://help.salesforce.com/articleView?id=security_pe_vs_classic_encryption.htm&type=5


質問 # 56
Northern Trail Outfitters has had an increase in requests from other business units to integrate opportunity information with other systems from Salesforce. The developers have started writing asynchronous @future callouts directly into the target systems. The CIO is concerned about the viability of this approach scaling for future growth and has requested a solution recommendation.
What should be done to mitigate the concerns that the CIO has?

  • A. Implement an ETL tool and perform nightly batch data loads to reduce network traffic using last modified dates on the opportunity object to extract the right records.
  • B. Refactor the existing @future methods to use Enhanced External Services, import Open API 2.0 schemas and update flows to use services instead of Apex.
  • C. Develop a comprehensive catalog of Apex classes to eliminate the need for redundant code and use custom metadata to hold the endpoint information for each integration.
  • D. Implement an Enterprise Service Bus for service orchestration, mediation, routing and decouple dependencies across systems.

正解:B


質問 # 57
A large enterprise customer has decided to implement Salesforce as their CRM. The current system landscape includes the following:
1. An Enterprise Resource Planning (ERP) solution that is responsible for Customer Invoicing and Order fulfillment.
2. A Marketing solution they use for email campaigns.
The enterprise customer needs their sales and service associates to use Salesforce to view and log their interactions with customers and prospects in Salesforce.
Which system should be the System of record for their customers and prospects?

  • A. New Custom Database for Customers and Prospects.
  • B. Salesforce with relevant Marketing and ERP information.
  • C. ERP with all prospect data from Marketing and Salesforce.
  • D. Marketing with all customer data from Salesforce and ERP.

正解:B

解説:
https://www.workfront.com/blog/systems-of-record


質問 # 58
Northern Trail Outfitters (NTO) uses a custom mobile app to interact with their customers.
One of the features of the app are Salesforce Chatter Feeds. NTO wants to automatically post a Chatter item to Twitter whenever the post includes the #thanksNTO hashtag.
Which API should an Integration Architect use to meet this requirement?

  • A. Apex REST
  • B. REST API
  • C. Connect REST API
  • D. Streaming API

正解:C


質問 # 59
Universal Containers (UC) is a leading provider of management training globally, UC embarked on a Salesforce transformation journey to allow students to register for courses in the Salesforce community. UC has a learning system that masters all courses and student registration.
UC requested a near real-time feed of student registration from Salesforce to the learning system. The integration architect recommends using Salesforce event.
Which API should be used for the Salesforce platform event solution?

  • A. Tooling API
  • B. Streaming API
  • C. O REST AP
  • D. SOAP API

正解:B


質問 # 60
A customer's enterprise architect has identified requirements around caching, queuing, error handling, alerts, retries, event handling, etc. The company has asked the Salesforce integration architect to help fulfill such aspects with their Salesforce program.
Which three recommendations should the Salesforce integration architect make?
Choose 3 answers

  • A. Event handling in a publish/subscribe scenario, the middleware can be used to route requests or messages to active data-event subscribers from active data-event publishers.
  • B. Event handling processes such as writing to a log, sending an error or recovery process, or sending an extra message, can be assumed to be handled by middleware.
  • C. Transform a fire-and-forget mechanism to request-reply should be handled bymiddleware tools (like ETL/ESB) to improve performance.
  • D. Message transformation and protocol translation should be done within Salesforce.
    Recommend leveraging Salesforce native protocol conversion capabilities as middle watools are NOT suited for such tasks
  • E. Provide true message queueing for integration scenarios (including orchestration,process choreography, quality of service, etc.) given that a middleware solution is required.

正解:A、B、E


質問 # 61
A company wants to standardize exception tracking, handling, and analytics. Given the following actions:
1. Build a company wide logging service hosted on a middleware platform
2. Create case object records for exceptions based thresholds
3. Change all their Apex Loggers to publish Application Exceptions as custom Platform Events.
Which two specifications should the integration architect include in the logging service architecture?
Choose 2 answers

  • A. Create Salesforce Cases conditionally using automatic Case creation rules.
  • B. Receive Application Events through Change Data Capture (CDC).
  • C. Create Salesforce Cases using the Salesforce REST, SOAP or Bulk API.
  • D. Subscribe to the Application Exceptions using the Salesforce Streaming API.

正解:A、C


質問 # 62
Which three considerations should an Integration Architect consider when recommending Platform Event as a Integration solution?
Choose 3 answers

  • A. Subscribe to an AssetToken Event stream to monitor OAuth 2.0 authentication activity. C
  • B. When you delete an event definition, it's permanently removed and can't be restored.
  • C. You can use Event Monitoring to track user activity, such as logins and running reports.
  • D. Inability to query event messages using SOQL
  • E. Inability to create a Lightning record page for platform events.

正解:B、D、E


質問 # 63
Northern Trail Outfitters (NTO) use Salesforce to track leads, opportunities, and to capture order details. However, Salesforce isn't the system that holds or processes orders. After the order details are captured in Salesforce, an order must be created in the remote system, which manages the orders lifecylce. The Integration Architect for the project is recommending a remote system that will subscribe to the platform event defined in Salesforce.
Which integration pattern should be used for this business use case?

  • A. Batch Data Synchronization
  • B. Fire and Forget
  • C. Remote Call In
  • D. Request and Reply

正解:B


質問 # 64
......

信頼できるSalesforce Architect ARC-101問題集PDF2023年06月09日最近更新された問題:https://jp.fast2test.com/ARC-101-premium-file.html

最新ARC-101試験問題集には合格保証付きます:https://drive.google.com/open?id=1eRdyXm_ZoWEbrnjD8El11QikLA19mfNC


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어