
Pass Salesforce Sharing-and-Visibility-Architect Exam in First Attempt Guaranteed [Apr-2024]
Exam Sure Pass Salesforce Certification with Sharing-and-Visibility-Architect exam questions
Salesforce Sharing and Visibility Architect certification exam is designed to test an individual's knowledge and skills in the areas of sharing and visibility, data modeling, security, and permissions. Sharing-and-Visibility-Architect exam consists of 60 multiple-choice questions that must be completed within 90 minutes. To pass the exam, candidates must score at least 70%. Sharing-and-Visibility-Architect exam covers a range of topics, including sharing rules, role hierarchy, record-level security, field-level security, data access, and user authentication. Candidates must have a deep understanding of these topics and how they relate to each other to pass the exam and earn certification.
To become a Salesforce Certified Sharing and Visibility Architect, candidates must have a deep understanding of Salesforce sharing and visibility concepts, including the architecture and design of data sharing models, data security, and data access controls. They must also have experience in designing and implementing complex Salesforce solutions using a range of technologies and tools, including Apex, Visualforce, and Lightning components.
NEW QUESTION # 128
Universal Containers provides 24x7 support for its customers worldwide using call centers in three different countries with each one covering an 8-hour shift in different time zones. Service reps in a call center have access to the same information but only during their local working hours.
Which feature in Salesforce controls access for specific login hours?
- A. Set the login hours on user records
- B. Permission sets
- C. Profiles
- D. Custom permissions
Answer: C
Explanation:
https://success.salesforce.com/ideaView?id=0873A000000E85KQAS
NEW QUESTION # 129
Universal Containers (UC) has a mostly Private organization-wide default, as it Is a core principle of UC to respect client data privacy. UC has implemented complex processes for granting access to Opportunity data. A few key members of the sales reporting team need to always be able to see, but not change, Opportunity data for all opportunities.
What should an architect recommend as an approach to meet these requirements?
- A. Give the View All Data permission to the Sales Reporting profile.
- B. Create a permission set that grants the View All permission for Opportunity.
- C. Create & permission set that grants the View All Data permission.
Answer: B
Explanation:
Explanation
Creating a permission set that grants the View All permission for Opportunity is the best approach to meet these requirements, as it will allow the sales reporting team members to view all opportunity records without modifying their profiles. Creating a permission set that grants the View All Data permission will work, but it will also grant access to all other objects, which may not be necessary or secure. Giving the View All Data permission to the Sales Reporting profile will work, but it will also affect all users with that profile, which may not be desired.
NEW QUESTION # 130
Sales Reps at Universal Containers sometimes create large files as a part of the Sales process that are too large to share over email. They would like users to be able to share files with customers, but the CISO has requested that any file links shared must be protected by a password.
How can this be accomplished?
- A. Set up an experience cloud site for customers to access files. Share the file with customers via chatter.
Customers can then log into the site to access the content. - B. Sales reps can create a content delivery. During creation, the user should select the option to require a password to access content.
- C. Utilize an AppExchange product for delivering password-protected files to their customers,
Answer: B
Explanation:
Explanation
Content delivery is a feature that allows users to share files with customers and protect them with a password.
Setting up an experience cloud site would require additional configuration and licensing. Utilizing an AppExchange product would introduce a dependency on a third-party solution.
NEW QUESTION # 131
UniversalContainers(UC)servicerepsareassignedtoaprofilewhichhas"ViewAll"inCase object(Private OWD).To make sure service repshaveaccess toallrelevant information to attendtocustomerrequests, whichtwodetailsshouldasalesforceArchitectsconsider? Choose 2answers:
- A. Service repswill be able to access all UC contactrecords if theyare controlled by parent.
- B. Service reps will notbe able to access all UC contactrecords if theyare controlled by parent.
- C. Servicerepswillbeable toaccessall the UC Accountrecordsdue to Implicit Sharing.
- D. Service reps willnotbeable toaccessallthe UCAccountsrecordsbecause Account OWD is private.
Answer: B,D
NEW QUESTION # 132
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.AccessLevel='Read'
- B. Objectname.AccessLevel='None'
- C. Objectname.AccessLevel='All'
- D. Objectname.AccessLevel='Edit'
Answer: B,C
Explanation:
Explanation
When assigning access level for a record using Apex Managed Sharing, you can only use 'Read' or 'Edit' values. Using 'All' or 'None' values will cause a DML exception on insert to the database.
NEW QUESTION # 133
Universal Containers uses Person Accounts to represent retail customers and Business Accounts to represent commercial customers. The retail sales team should not have access to commercial customers but should have access to ALL retail customers.
With the organization-wide default on Account set to Private, how should the architect meet these requirements?
- A. Create an owner-based sharing rule on AccountContactRelation to grant a@coess to all account contact roles records owned by retail sales reps.
- B. Update the Retall Sales profile to grant access to Person Account record type.
- C. Create o criteria-based sharing rule giving the Retail Sales role access to Accounts of type PersonAccount.
Answer: C
NEW QUESTION # 134
What feature in Salesforce is needed to restrict access to a custom object that has Public Read/Write access?
- A. Profile
- B. Role Hierarchy
- C. Page Layout
- D. Record Type
Answer: A
NEW QUESTION # 135
Universal Containers (UC) wants to reduce the amount of redundant leads entered into the system. UC.. only edited/reassigned by the lead owner.
What organization-wide default (OWD) approach should be recommended to help UC implement these ..
- A. Implement a Public Read Only OWD on Lead.
- B. Implement a Public Read Only/Transfer OWD on Lead
- C. Implement a Public Read/Write OWD on Lead.
- D. Implement a private OWD on Lead.
Answer: A
NEW QUESTION # 136
Universal Containers (UC) has a custom Apex class that enforces a business process and updates opportunity field-level security permissions of read only certain user's profiles are being updated by their class.
How should the architect fix this problem?
- A. Use the IsUpdateable() Apex method to test each field prior to allowing updates.
- B. Use the with SECURYT_ENFORCED keyword in the SOQL statement.
- C. Put the code in an class that uses the With Sharing keyword.
- D. Add with Sharing keyword to the class.
Answer: A
Explanation:
Explanation
Using the IsUpdateable() Apex method to test each field prior to allowing updates is the best way to fix this problem. This method returns true if the user has permission to edit a specific field on a specific object, and false otherwise. Option A is incorrect, since putting the code in a class that uses the With Sharing keyword would not affect field-level security permissions, but rather record-level access based on sharing rules. Option C is incorrect, since using the with SECURITY_ENFORCED keyword in the SOQL statement would not prevent updates on fields that are read-only for certain profiles, but rather enforce field- and object-level data protection. Option D is incorrect, since adding with Sharing keyword to the class would have the same effect as option A.
NEW QUESTION # 137
The Architect at Universal Containers has created a List View to show all open Opportunities that were created in the last month, and would like to make this list view visible to certain groups of users. Which two options are available to the Architect for sharing the List View?
- A. Profiles
- B. Manual Sharing
- C. Roles and Subordinates
- D. Public Groups
Answer: C,D
Explanation:
Explanation
Public Groups and Roles and Subordinates are two options for sharing the List View with certain groups of users. Profiles and Manual Sharing are not valid options for sharing List Views
NEW QUESTION # 138
Universal Containers (UC) has a requirement to expose a web service to their business partners. The web service will be used to allow each business partner to query UC's Salesforce instance to retrieve the status of orders. The business partner should only be allowed access to orders for which the business partner is the fulfillment vendor. The Architect does not want the business partners to utilize the standard APIs and would prefer a custom API be developed. Which three design elements should the Architect consider in order to ensure the data security of the solution?
Choose 3 answers
- A. Develop a custom Apex web service using the "With Sharing" keyword.
- B. Provide each partner with their own Salesforce login set to API Enabled on the profile.
- C. Query the Orders object with Dynamic SOQL based upon the fulfillment ID.
- D. Develop a custom Apex web service with a fulfillment ID input attribute
- E. Set the Orders object's sharing settings to Private in the Org-Wide Defaults
Answer: A,C,E
NEW QUESTION # 139
Universal Containers has a custom Job object with a private sharing model. Based on the size and location of the Job, different teams must have access to edit the specific Job record. To support this requirement, Apex Managed Sharing has been implemented to share records with the required users. Since the teams change frequently, managed sharing recalculations need to be manually run frequently. What can the Architect do to optimize this process?
- A. Create a scheduled job to automatically run the sharing recalculations on a nightly basis.
- B. Change the sharing model on the Job object to Public Read/Write.
- C. Create a custom Visualforce page to edit the jobs and specify Without Sharing on the controller.
- D. Create public groups for each team, and share the jobs with the groups instead of users.
Answer: D
NEW QUESTION # 140
Universal Containers (UC) has created a public group with certain Sales Engineers to help on complex deals and a sharing rule to grant access to these opportunities. Opportunity OWD is private.
What is the impact of these sharing settings?
- A. Sales Engineers Managers and their managers in the role hierarchy will also have access to these records.
- B. Sales Engineers that have a similar role of the Sales Engineers of the public group will also have access to these records.
- C. Sales Engineers direct reports will also have access to these records.
- D. Subordinates of Managers who have Sales Engineers in the public group will also have access to these records.
Answer: A
NEW QUESTION # 141
Universal Containers (UC) has Affiliates who sell containers in countries where UC does not have a local office. UC has leveraged the Partner Community to manage the sales cycle. One of their affiliates has exponentially grown in the last years and restructured its internal sales team with the following structure:
Sales VP ...> Direct of sales ..> Sales Manager ..> Sales Reps
What is the main problem a Salesforce Architect will face to provide a solution?
- A. Partner Community does not support Role Hierarchy.
- B. Partner User Roles are limited to three levels.
- C. Super User does not work in Partner Community
- D. The Channel manager Role can not be shared with Partner Community.
Answer: B
NEW QUESTION # 142
What advanced tool can Salesforce enable for Large-scale role hierarchy realignments?
- A. Granular locking
- B. Partitioning by Divisions
- C. Skinny Table Indexing
- D. Set external organization-wide default to public read only
Answer: A
Explanation:
Explanation
Granular locking is an advanced tool that Salesforce can enable for large-scale role hierarchy realignments.
Granular locking allows finer-grained locking for certain operations that affect large data sets, such as bulk loading or updating. Granular locking can reduce the locking time and avoid performance issues when changing role hierarchy or ownership. Therefore, the answer C is correct and the other options are incorrect
NEW QUESTION # 143
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.AccessLevel='Read'
- B. Objectname.AccessLevel='None'
- C. Objectname.AccessLevel='All'
- D. Objectname.AccessLevel='Edit'
Answer: B,C
NEW QUESTION # 144
......
Salesforce Sharing-and-Visibility-Architect certification is a valuable certification for architects who specialize in Salesforce security and sharing. Salesforce Certified Sharing and Visibility Architect certification demonstrates expertise in Salesforce security and sharing models and is highly regarded by employers. To become certified, candidates must pass the Salesforce Certified Sharing and Visibility Architect exam, which covers topics such as data security, data sharing, user access, and record-level security. Candidates can prepare for the exam by taking the Salesforce Sharing-and-Visibility-Architect certification course and accessing online resources such as practice exams and study guides.
Real Salesforce Sharing-and-Visibility-Architect Exam Questions Study Guide: https://itexambus.passleadervce.com/Salesforce-Architect/reliable-Sharing-and-Visibility-Architect-exam-learning-guide.html