
[Jul-2023] ARC-101 Questions - Truly Beneficial For Your Salesforce Exam
Download Salesforce ARC-101 Sample Questions
NEW QUESTION # 50
Universal Containers (UC) is currently managing a custom monolithic web service that runs on an on-premise server.
This monolithic web service is responsible for Point-to-Point (P2P) integrations between:
1. Salesforce and a legacy billing application
2. Salesforce and a cloud-based Enterprise Resource Planning application
3. Salesforce and a data lake.
UC has found that the tight interdependencies between systems is causing integrations to fail.
What should an architect recommend to decouple the systems and improve performance of the integrations?
- A. Use the Salesforce Bulk API when integrating back into Salesforce.
- B. Leverage modular design by breaking up the web service into smaller pieces for a microservice architecture.
- C. Re-write and optimize the current web service to be more efficient.
- D. Move the custom monolithic web service from on-premise to a cloud provider.
Answer: B
NEW QUESTION # 51
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. Batch
- B. SObject Tree
- C. SObject Collections
- D. Composite
Answer: B
Explanation:
https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobject_tree.htm
NEW QUESTION # 52
Which WSDL should an architect consider when creating an integration that might be used for more than one salesforce organization and different met
- A. SOAP API WSDL
- B. Corporate WSDL
- C. Partner WSDL
- D. Enterprise WSDL
Answer: C
NEW QUESTION # 53
Northern Trail Outfitters needs to send order and line items directly to an existing finance application webservice when an order if fulfilled. It is critical that eac order reach the finance application exactly once for accurate invoicing.
What solution should an architect propose?
- A. Trigger invokes Queueable Apex method, with custom error handling process.
- B. Trigger makes @future Apex method, with custom error handling process.
- C. Outbound Messaging, which will automatically handle error retries to the service.
- D. Button press invokes synchronous callout, with user handling retries in case of error
Answer: A
NEW QUESTION # 54
An Integration Architect has built a Salesforce application that integrates multiple systems and keeps them synchronized via Platform Events.
What is taking place if events are only being published?
- A. The platform events are published immediately before the Apex transaction completes.
- B. The platform events are published after the Apex transaction completes.
- C. The platform events has a trigger in Apex.
- D. The platform events are being published from Apex.
Answer: B
Explanation:
https://developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_events_define_ui.htm
NEW QUESTION # 55
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. 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.
- 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. Implement an Enterprise Service Bus for service orchestration, mediation, routing and decouple dependencies across systems.
- D. 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.
Answer: B
NEW QUESTION # 56
A new Salesforce program has the following high level abstract requirement: Business processes executed on Salesforce require data updates between the internal systems and Salesforce Which three relevant details should a Salesforce Integration Architect seek to specifically solve for Integration architecture needs of the program?
Which three relevant details should a Salesforce Integration Architect seek to specifically solve for Integration architecture needs of the program?
Choose 3 answers
- A. Timing aspects - real-time/near real-time (synchronous or asynchronous), batch; update frequency.
- B. Integration Style Process based, Data based, Virtual integration. E Core functional and non functional requirements for User Experience design, Encryption needs, Community, and license choices.
- C. Source and Target system, Directionality, data volume & transformation complexity long with any middleware that can be leveraged.
- D. Integration skills, SME availability and Program Governance details.
Answer: A,B,C
NEW QUESTION # 57
Universal Containers (UC) is a leading provider of management training globally, UC requested students course registration data generated from the Salesforce student community to be synced with the learning management system (LMS). Any update to the course registration data needs to be reflected in the LMS.
Which integration mechanism should be used to meet the requirement?
- A. Platform Event
- B. Change Data Capture (CDC)
- C. Streaming API
- D. Outbound Message
Answer: C
NEW QUESTION # 58
An architect decided to use Platform Events for integrating Salesforce with an external system for a company.
Which three things should an architect consider when proposing this type of integration mechanism?
Choose 3 answers
- A. To publish an event, the integration user in salesforce needs create permission on the event entity.
- B. To subscribe to an event, the integration user in salesforce needs read access to theevent entity.
- C. External system needs to have the same uptime in order to be able to keep up with Salesforce Platform Events.
- D. Error handling must be performed by the remote service because the event is effectively handed off to the remote system for further processing.
- E. Salesforce needs to be able to store information about the external system in order toknow which event to send out.
Answer: A,B,D
NEW QUESTION # 59
An Architect has received a request to prevent employees that leave the company from accessing data in Salesforce after they are deactivated in the company's HR system.
What should an Architect determine before recommending a solution?
- A. Determine data access prevention requirements, then identify frequency.
- B. Determine data access prevention requirements, then identify system constraints.
- C. Determine inbound integration requirements, then identify frequency.
- D. Determine data volume requirements, then identify the loading schedule.
Answer: C
NEW QUESTION # 60
Northern Trail Outfitters is seeking to improve the performance and security of outbound integrations from Salesforce to on-premise servers.
What should the Architect consider before recommending a solution?
- A. Shield Platform Encryption Limitations
- B. A Default gateway restrictions
- C. External gateway products in use
- D. Considerations for using Deterministic Encryption
Answer: C
NEW QUESTION # 61
An Architect is asked to build a solution that allows a service to access Salesforce through the API. What is the first thing the Architect should do?
- A. Create a special user solely for the integration purposes.
- B. Authenticate the integration using existing Single Sign-On.
- C. Create a new user with System Administrator profile.
- D. Authenticate the integration using existing Network-BasedSecurity.
Answer: A
NEW QUESTION # 62
Northern Trail Outfitters (NTO) has recently implemented middleware for orchestration of services across platforms. The ERP system being used requires transactions be captured near real time at a REST endpoint initiated in Salesforce when creating an order object. Additionally, the Salesforce team has limited development resources and requires a low code solution.
Which two options will fulfill the use case requirements?
Choose 2 answers
- A. Implement Change Data Capture on the order object and leverage the replay Id in the middleware solution.
- B. Use a process builder to create a Platform Event, selecting the record type as the Platform Event Name on insert of record.
- C. Implement a Workflow Rule with Outbound Messaging to send SOAP messages to the designated endpoint.
- D. Use Remote Process Invocation fire and forget pattern on insert on the order object using Flow Builder.
Answer: A,D
NEW QUESTION # 63
Universal Containers (UC) currently owns a middleware tool and they have developed an API-led integration architecture with three API tiers. The first tier interfaces directly with the systems of engagement, the second tier implements business logic and aggregates data, while the third tier interfaces directly with systems of record. Some of the systems of engagement will be a mobile application, a web application, and Salesforce.
UC has a business requirement to return data to the systems of engagement in different formats while also enforcing different security protocols.
What should an Integration Architect recommend to meet these requirements?
- A. Enforce separate security protocols and return formats at the first tier of the API-led architecture.
- B. Implement an API gateway that all systems of engagement must interface with first.
- C. Leverage an Identity Provider solution that communicates with the API tiers via SAML
- D. Enforce separate security protocols and return formats at the second tier of the API-led architecture.
Answer: B
NEW QUESTION # 64
A developer has been tasked by the integration architect to build a solution based on the Streaming API. The developer has done some research and has found there are different implementations of the events in Salesforce (Push Topic Events, Change Data Capture, Generic Streaming, Platform Events), but is unsure of to proceed with the implementation.The developer asks the system architect for some guidance.
What should the architect consider when making the recommendation?
- A. Apex triggers can subscribe to Generic Events.
- B. Change Data Capture can be published from Apex.
- C. Push Topic Event can define a custom payload.
- D. Change Data Capture does not have record access support.
Answer: D
NEW QUESTION # 65
A company in a heavily regulated industry requires data in legacy systems to be displayed in Salesforce user interfaces (UIs). They are proficient in their cloud-based ETL (extract, transform, load) tools. They expose APIs built on their on-premise middleware to cloud and on-premise applications.
Which two findings about their current state will allow copies of legacy data in Salesforce?
Choose 2 answers
- A. On-premise middleware provides APIs to legacy systems data.
- B. Only on-premise systems are allowed access to legacy systems.
- C. Legacy systems can use queues for on-premise integration.
- D. Cloud-based ETL can access Salesforce and supports queues.
Answer: A,D
NEW QUESTION # 66
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. Receive Application Events through Change Data Capture (CDC).
- B. Create Salesforce Cases using the Salesforce REST, SOAP or Bulk API.
- C. Create Salesforce Cases conditionally using automatic Case creation rules.
- D. Subscribe to the Application Exceptions using the Salesforce Streaming API.
Answer: B,C
NEW QUESTION # 67
Universal Containers (UC) uses Salesforce to track the following customer data:
1. Leads,
2. Contacts
3. Accounts
4. Cases
Salesforce is considered to be the system of record for the customer. In addition to Salesforce, customer data exists in an Enterprise Resource Planning (ERP) system, ticketing system, and enterprise data lake. Each of these additional systems have their own unique identifier. UC plans on using middleware to integrate Salesforce with the external systems.
UC has a requirement to update the proper external system with record changes in Salesforce and vice versa.
Which two solutions should an Integration Architect recommend to handle this requirement?
Choose 2 answers
- A. Store unique identifiers in an External ID field in Salesforce and use this to update the proper records across systems.
- B. Design an MDM solution that maps external ID's to the Salesforce record ID.
- C. Use Change Data Capture to update downstream systems accordingly when a record changes.
- D. Locally cache external ID'S at the middleware layer and design business logic to map updates between systems.
Answer: B,C
NEW QUESTION # 68
......
The Salesforce ARC-101 Certification Exam is intended for professionals who have experience in designing and building integration solutions between Salesforce and other systems. The exam covers a wide range of topics, including Salesforce Integration Architecture, Integration Patterns, Integration Types, Data Transformation, and Security. The exam also evaluates the candidate's ability to use various integration tools such as Salesforce Connect, Apex Integration Services, and Heroku Connect.
Passing the Salesforce ARC-101 exam is a great way for professionals to demonstrate their expertise in designing and building integration solutions using Salesforce. It also provides individuals with an opportunity to advance their careers and open up new job opportunities. Additionally, earning the Salesforce Certified Integration Architecture Designer certification can help professionals increase their credibility with clients and employers.
Truly Beneficial For Your Salesforce Exam: https://www.testkingpass.com/ARC-101-testking-dumps.html
Real ARC-101 Exam Questions and Answers FREE: https://drive.google.com/open?id=1lV-5b8dVTDBlzcUwXoszjBhQL0k7ma0W