DON'T WANT TO MISS A THING?

Certification Exam Passing Tips

Latest exam news and discount info

Curated and up-to-date by our experts

Yes, send me the newsletter

Salesforce Sharing and Visibility Architect (Salesforce ARC-202) Sample Questions and Answers? | SPOTO

SPOTO's latest exam dumps on the homepage, with a 100% pass rate! SPOTO delivers authentic Cisco CCNA, CCNP study materials, CCIE Lab solutions, PMP, CISA, CISM, AWS, and Palo Alto exam dumps. Our comprehensive study materials are meticulously aligned with the latest exam objectives. With a proven track record, we have enabled thousands of candidates worldwide to pass their IT certifications on their first attempt. Over the past 20+ years, SPOTO has successfully placed numerous IT professionals in Fortune 500 companies.
Take other online exams

Question #1
Universal Containers has a Performance Feedback custom object (Private organization- wide default) used by customers to report any Issues with delivery drivers. Feedback should not be visible to the driver, but any feedback records should be accessible to people above them in the Role Hierarchy, even when the driver changes managers. Assuming managers have Read access to the Feedback object, which three steps are necessary to solve these requirements?
A. Remove Read permission on the Driver profile, have feedback ownership transferred to the driver's manager when feedback Is submitted, and use the Role Hierarchy to give access to a driver's manager
B. Remove Read permission on the Driver profile, have feedback ownership transferred to the driver when feedback is submitted, and use the Role Hierarchy to give access to 4 driver's manager
C. Remove Read permission on the Driver profile, have feedback ownership transferred to the driver when feedback is submitted, and create an ownership-based sharing rule,
View answer
Correct Answer: B
Question #2
Which two settings are available in profiles, but not permission sets?Choose 2 answers.
A. Tab Settings
B. Record Types
C. Page Layout Assignments
D. Login Hours
View answer
Correct Answer: CD
Question #3
If OWD is Public Read Only, what are sharing access options
A. Read, Read/Write
B. PlaceHolder
View answer
Correct Answer: A
Question #4
At Universal Containers, users should only see Accounts they or their subordinates own. All Accounts with the custom field "Kay Customer" should be visible to all Senior Account Managers. There is a custom field on the Account record that contains sensitive information and should be hidden from all users, except 3 designated users who require view and edit access. These three users come from different user groups, and will change occasionally. Which three platform security features are required to support t
A. Criteria-Based Sharing Rules
B. Owner-Based Sharing Rules
C. Role Hierarchy
D. Apex Managed Sharing
E. Permission Sets
View answer
Correct Answer: ACE
Question #5
Which option can be selected to share data when creating a sharing rule?
A. Users
B. Profiles
C. Roles
View answer
Correct Answer: C
Question #6
Universal Containers is designing a new community using the Customer Community license type. They would like to have the users complete survey questions through the community interface and store the responses in a Custom Object that has a lookup to the account object. Any internal user who has access to the account should be able to see all survey responses. All Customer Community users should be able to see surveys filled in by other users for their company, but not surveys for other companies. What are th
A. Set all Organization-Wide Default settings to be "Public Read/Write" for both internal and external users
B. Set all Organization-Wide Default security to be "Private" for both internal and external users and use Sharing Rules to grant the desired access
C. Set all Organization-Wide Default security to be "Public Read/Write" for internal users and "Private" for external users
D. Set the custom object to be master-detail to the Account and leave the Organization- Wide Default settings as their default values
View answer
Correct Answer: B
Question #7
Universal Containers has selected a small and diverse group of users to review Inactive accounts. Given the Private sharing model, a public group was created and made available to this group of users. A sharing rule was created to make inactive Accounts visible to the public group. However some of these users are reporting they don't see any of the Accounts that were shared with the public group. What is the underlying Issue for these users?
A. The users are In profiles that have no access to the Account object
B. The page layout assigned to these mart to different than the Account owner
C. The users have a permission set that only allow Accounts in "Active' status
D. The Accounts ire owned by users higher In the role hierarchy
View answer
Correct Answer: A
Question #8
Universal Containers has requirement for the Architect to develop Apex Managed Sharing code for the custom Job object. The sharing settings for the Job object are set to Private.When assigning access level for the record, which two lines of code will cause a DML exception on insert to the database?Choose 2 answers
A. Objectname
B. Objectname
C. Objectname
D. Objectname
View answer
Correct Answer: BC
Question #9
Universal Containers has a private sharing model on Accounts. Apex Managed Sharing is required to share certain account records with all users who are assigned to a specific Role in the Role Hierarchy. What should be the recommended way for the Architect to implement this?
A. Create an AccountShare record associated to a public group containing the Users in the Role
B. Create an AccountShare record associated to each user who is assigned to the Role
C. Create an AccountShare record associated to the required Role
D. Create an AccountShare record associated to a public group containing the Role
View answer
Correct Answer: A
Question #10
What should the Architect do to ensure Field-Level Security is enforced on a custom Visualforce page using the Standard Lead Controller?
A. Use the "With Sharing" keyword on the Standard Lead Controller
B. Nothing; Field-Level Security will automatically be enforced
C. Use the {!Schema
D. Use the Schema
View answer
Correct Answer: B
Question #11
Universal Containers is updating its Organization-Wide Sharing Settings for the Account Object from a "Public Read/Write" model to a "Private" model, so that they can hide certain national accounts from sales reps and sales managers. These national accounts should only be accessible by sales directors and above. Universal Container's Role Hierarchy matches its organizational hierarchy. Which two options should the Architect consider when designing the solution? Choose 2 answers
A. Sales directors will need a sharing rule created so that they can see accounts owned by Sales Users
B. National accounts must be owned by a user who is above the sales managers in the Role Hierarchy
C. Apex managed sharing will have to be disabled for the account object to protect the national accounts
D. If a sales rep is added to the Opportunity Team for a national account, they will gain access to account data
View answer
Correct Answer: BD
Question #12
Universal Containers has a strict security model enforced through object, field, and row- based security mechanisms. The Architect would like to ensure the security model is being thoroughly tested using Apex automated tests. Which three considerations should be made when using the runAs() method to design Apex until tests?
A. runAs() does not enforce user permissions or field-level permissions in test classes
B. runAs() can be used inside of test classes to validate record-level security
C. runAs() can be used inside of test classes to validate field-level permissions
D. runAs() can be used outside of test classes to bypass record-level security
E. runAs () counts towards total DML statements issued within transaction
View answer
Correct Answer: ABE
Question #13
Universal Containers has implemented a strict software architecture for their custom Apex code. One of the requirements is that all SOQL queries are contained within reusable classes. Depending on the context of the Apex transaction, the queries should be able to run either "With Sharing" or "Without Sharing". Which two ways allow the Architect to meet these requirements? Choose 2 answers.
A. Create a reusable SOQLQueries class; do not specify "With" or "Without Sharing" on the SOQLQueries class
B. Create a reusable SOQLQueries class; do not specify "With" or "Without Sharing" on the SOQLQueries class and use the runAs() method to dynamically set the context
C. Create a reusable SOQLQueries class; specify "With Sharing" on the methods that require user context and "Without Sharing" on the methods requiring system context
D. Create a SystemSOQLQueries class and a UserSOQLQueries class; set the "With Sharing" keyword on the User SOQLQueries class and "Without Sharing" on the SystemSOQLQueries class
View answer
Correct Answer: CD
Question #14
What is the security vulnerability in the following code snippet? Value of my Textfield is
A. SOQL Injection
B. Arbitrary Redirects
C. Cross-Site Scripting
D. Access Control
View answer
Correct Answer: C
Question #15
When writing test methods, what functionality is verified by the system method "runAs()"?
A. Enforcement of a user's record sharing
B. Enforcement of user permissions
C. Enforcement of a user's field-level security
D. Enforcement of user's public group assignments
View answer
Correct Answer: A
Question #16
The Collections department at Universal Containers uses Salesforce to track its efforts. All Invoices and Invoice Line Items are stored in Salesforce. Invoice Line Item object details, such as Quantity and Extended Amount, should be summarized at the Invoice Object level, and all users who can see a given invoice should always see all invoice line items. Without leveraging Apex code, how should an Architect create the relationship between the Invoice object and the Invoice Line Item Object?
A. The Invoice object should have a Master-Detail to the Invoice Line Item Object
B. The Invoice Line Item Object should have a Lookup to the Invoice Object
C. The Invoice Object should have an inner joint to the Invoice Line Item Object
D. The Invoice Line Item Object should have a Master-Detail to the Invoice Object
View answer
Correct Answer: D
Question #17
Universal Containers has a custom object to maintain Job information with a private sharing model. The Delivery group is distributed through the Role Hierarchy based on geography. As the Delivery group often collaborates on Jobs, all users in the Delivery profile required View access to all Job records. In special case, the Delivery user who owns a job must be able to grant a Product Development user access to a Job record. Which two platform features can be used to support these requirements?Choose 2 answe
A. Criteria-based Sharing Rules
B. "View All" Profile settings
C. Owner-based Sharing Rules
D. Manual Sharing
View answer
Correct Answer: BD
Question #18
What is the best practice for testing sharing and visibility changes?
A. Use Administrative and User reports to view the Active Users
B. Use the Login As feature for a sample user in each role and profile
C. Use Field Audit Trail to audit the field meta-data and visibility
D. Use the Sharing button to test Profile and Permission set changes
View answer
Correct Answer: B
Question #19
User A at Universal Containers is in the default account team for User B. User B owns the ACME account and changed User A's team member access to the account. What is the impact of this change?
A. Changes affect the default Opportunity team
B. Changes affect only the ACME Account
C. Changes affect the default Account team
D. Changes affect all child ACME Accounts
View answer
Correct Answer: B
Question #20
Universal Containers uses 75,000 distributors that have close to 1 million total users. Distributors need to use the community to see closing opportunities assigned to their distributor for delivery. What license recommendation will meet distributor needs?
A. Customer Community
B. Customer Community Plus
C. Sales Cloud
D. Partner Community
View answer
Correct Answer: D
Question #21
Universal Container (UC) is in a legal dispute regarding several orders. UC has found out these records VP of Sales has asked to ensure this cannot happen in the future.What approach would meet this requirement?
A. Remove Order delete Permission from Profiles and Permission Sets
B. Implement a Sharing Rule that changes access for order to Read
C. Remove the Delete button from the Order Page Layout
D. Change the Record Type/Page Layout assignment for orders to be Read Only
View answer
Correct Answer: AD
Question #22
Universal Containers has a requirement to share Accounts automatically to the users at a field office. They currently have the following setup in their environment:1. Accounts are set to Private in the Org-Wide Default. 2.The field office is specified by a lookup in the Account object. 3. There are 400 field offices. 4.The users in each field office are managed using public groups. Based upon a lookup relationship field on the Account, how should the Architect meet this requirement?
A. Use Manual Sharing to share the Account with the appropriate field office
B. Use Account Teams to share the Account with the appropriate field office
C. Use Programmatic Sharing to share the Account with the appropriate field office
D. Use Criteria-Based Sharing to share the Account with the appropriate field office
View answer
Correct Answer: C

View The Updated Salesforce Exam Questions

SPOTO Provides 100% Real Salesforce Exam Questions for You to Pass Your Salesforce Exam!

View Answers after Submission

Please submit your email and WhatsApp to get the answers of questions.

Note: Please make sure your email ID and Whatsapp are valid so that you can get the correct exam results.

Email:
Whatsapp/phone number: