Provide Salesforce Sharing-and-Visibility-Designer Practice Test Engine for Preparation [Q40-Q62]

Share

Provide Salesforce Sharing-and-Visibility-Designer Practice Test Engine for Preparation

Detailed New Sharing-and-Visibility-Designer Exam Questions for Concept Clearance

NEW QUESTION # 40
The architect at Universal Containers would like to prevent users from editing encrypted fields. Assuming no customizations are implemented, which two options should the Architect choose to support the requirement?
Choose 2 answers

  • A. Apex Triggers
  • B. Page Layout settings
  • C. Workflow Rules
  • D. Validation Rules

Answer: B,D


NEW QUESTION # 41
Sales Operations at Universal Container (UC) wants to create the opens to fiber appropriates for center.
In which two ways can UC hide list that are not relevant to an individual use since there will be Choose 2 answers.

  • A. Share the list views with the appropriate role in the role hierarchy
  • B. Share the list views with the appropriate individual users.
  • C. Share the list views with the appropriate public group.
  • D. Share the list views with the appropriate queue.

Answer: A,C


NEW QUESTION # 42
A developer of Cosmic Harvest has created a Visualforce page for a tab in Salesforce. The page uses a custom controller and allows a user to view and update certain fields on account records based on custom criteria selected by the user. What can the developer do to check within the custom controller whether the current user has the access to edit a particular field?Choose 1 answer.

  • A. Use the isAccessible() method of the DescribeFieldResult class.
  • B. Use the isUpdateable() method of the DescribeSObjectResult class.
  • C. Use the isAccessible() method of the DescribeSObjectResult class.
  • D. Use the isUpdateable() method of the DescribeFieldResult class.

Answer: D


NEW QUESTION # 43
Universal Containers (UC) is implementing Sales Cloud. During the last quarter of the financial of the financial year, .. They requested a solution in Salesforce to allow them to specify an assistance agent on the opportunity.. the assistance field. The system should automatically remove access from the previous assistant and ..
What is the optimum solution to meet the requirements?

  • A. Use apex sharing to share and unicast opportunities with the assistant agent.
  • B. Use sharing rule to share opportunities with the assistant agent.
  • C. Use share group to share opportunities with the assistant agent.
  • D. Use opportunity team and create an assistant field, use apex to share opportunities with the assistant

Answer: A


NEW QUESTION # 44
The role of a sales manager of Cosmic Electronics was recently changed due to a transfer. He is now able to access an account record that is not owned by him. The Salesforce administrator of the company would like to determine whether the role hierarchy is the reason for the record access. Which of the following can be used to determine this in the Salesforce Classic user interface?Choose 1 answer.

  • A. Sharing Button
  • B. Apex Sharing Reason
  • C. Sharing Settings
  • D. Role

Answer: A


NEW QUESTION # 45
Universal Containers (UC) uses a custom Visualforce page to display shipment tracking information (custom object, private OWD) to field manager and agents. The IT team wants to make sure that users have access to only the information that is allowed.
Which Apex method must be used to make sure only allowed fields are shown to the users'

  • A. isAccessible()
  • B. isShowable()
  • C. isReadable()
  • D. isViewable()

Answer: A


NEW QUESTION # 46
What vulnerability can exist when controllers use dynamic rather than static queries and bind variables?

  • A. Buffer Overflow Attacks.
  • B. SOQL Injection.
  • C. Cross-site scripting.
  • D. Record Access Override.

Answer: B


NEW QUESTION # 47
Universal Containers (UC) delivers training in 500 different regions. The UC Operations Users team manage course setup, scheduling, and trainer setup. The Operations Users team members work at a regional level and report to an Operations manager. The Operations manager requested access to edit ALL scheduled courses owned by the Operation Users team.
How can this be achieved?

  • A. The Operations manager will get access to the scheduled courses by creating an ownership-based sharing rule and share the scheduled courses with the Operations manager.
  • B. The Operations manager will get access to the scheduled courses owned by the Operations Users team defined in the role hierarchy.
  • C. The Operations manager will get access to the scheduled courses by creating a public group and add the Operations manager and the Operations Users team to the public group
  • D. The Operations manager will get access to the scheduled courses by granting the Operations manager modify ALL on scheduled courses.

Answer: B


NEW QUESTION # 48
In a recruiting application, a master-detail relationship has been defined between two custom objects, Job Applications (master) and Reviews (detail). Which statement is TRUE? Choose 2

  • A. Review records will inherit ownership from the associated job application
  • B. Deleting a Job application record will delete associated review records
  • C. The master-detail relationship between Job Applications and Reviews is defined on the Job Application object
  • D. Review records may exist without an associated job application

Answer: A,B


NEW QUESTION # 49
Universal containers (UC) has a partner community for its 200 distributors. UC customer accounts are .. organization-wide default setting for the custom Delivery object is private.
How can an architect advise UC to grant all users at a distributor access to delivery records for all customer distributor?

  • A. Create a criteria-based sharing rule that shares delivery record matching a distributor to the ...
  • B. Create a Sharing set for the Distributor profile to grant access to the Delivery object.
  • C. Create a criteria-based sharing rule that shares delivery records matching the Distributor to user distributor.
  • D. Give ownership of the delivery record to a distributor user.

Answer: B


NEW QUESTION # 50
If you want to create some logic that will share certain records in APEX code, you just have to create special records that will open access to the desired records. The aim is to create records of certain type, for example , all share objects for custom objects are named as

Answer:

Explanation:
MyCustomObject__Share


NEW QUESTION # 51
Cosmic Financial Solutions would like to store each customer's social security number on the customer's account record. The number should always be masked unless a user has the permission to view it. Only a few users should be given the permission to view this data. Which of the following can be used to meet this requirement?Choose 1 answer.

  • A. Apex Crypto Class
  • B. Classic Encryption
  • C. Shield Platform Encryption
  • D. Protected Custom Metadata Type

Answer: B


NEW QUESTION # 52
What should a Salesforce architect recommend to make sure that users that gained access to a custom of sharing do not lose access to it when its owner is changed?

  • A. Use ''With Sharing'' keyword to make sure record visibility will be considered
  • B. Create a specific Sharing Reason for the custom object.
  • C. Create a new record in_Share object with RowCause ''Manual''
  • D. Use ''runAS'' system method in Apex classes to enforce record visibility.

Answer: B


NEW QUESTION # 53
Which two are potential vulnerabilities in the following code snippet? <apex:page> <apex:form> <apex:outputText value="Enter Name"/> <apex:inputText value="{!name}" /> <apex:commandButton value="Query" action="{!query}" /> </apex:form> </apex:page> public class SOQLController { public String name { get { return name;} set {name=value;} } public PageReference query() { String qryString='SELECT Id FROM Contact WHERE '+ '(IsDeleted = false and Name like \'%' + name + '%\'}'; queryResult = Database.query(qryString); retunr null; } } Choose 2 answers

  • A. Arbitrary Redirects
  • B. Data Access Control
  • C. SOQL Injection
  • D. FLS check

Answer: B,C


NEW QUESTION # 54
If you want to create some logic that will share certain records in APEX code, you just have to create special records that will open access to the desired records.
The aim is to create records of certain type, for example , all share objects for custom objects are named as ___________?

Answer:

Explanation:
MyCustomObject__Share


NEW QUESTION # 55
Universal Containers has Public ReadOnly sharing settings on the Opportunity object. What opty access options can the user see while adding account team members to Account

  • A. ReadOnly and Read/Wrote
  • B. Private and ReadOnly
  • C. ReadOnly
  • D. Private

Answer: A


NEW QUESTION # 56
Sales manager want their team members to help each other close Opportunities. The Opportunity and ..
private. To grant Opportunity access to sales reps on the same team, ownership-based sharing rules ..
What is the side effect of this approach?

  • A. Sales Reps on the same team will have Edit access to the Accounts for Opportunity owned by their.
  • B. Sales reps on the same will have Read access to the Accounts for Opportunities owned by their.
  • C. All sales reps will have Read access to Accounts for all Opportunities.
  • D. All sales reps will have Read access to all Accounts.

Answer: D


NEW QUESTION # 57
*For objects where data access is granted through the role hierarchy, how is access granted?

  • A. Users are only granted access to data owned by users below them in the role hierarchy
  • B. Users are granted access to data accessible to users in the same role in the role hierarchy
  • C. Users are granted access to data accessible by users below them in the role hierarchy
  • D. Users are only granted read access to data owned by users above them in the role hierarchy

Answer: A


NEW QUESTION # 58
To grant Universal Containers sales manager access to shipment records properly, it was necessary to leverage Apex managed sharing. The IT team is worried about improper access to records.
Which two features and best practices should a Salesforce architect recommend to mitigate this risk?

  • A. Use isAccessible keyword in Apex classes to assure record visibility will be followed
  • B. Use runAs system method in test classes to test using different users and profiles.
  • C. Use with Sharing keyword in Apex classes to assure record visibility will be followed.
  • D. Use isShareable in Apex classes to assure record visibility will be followed.

Answer: A,C


NEW QUESTION # 59
Universal Containers has set Account Sharing to Private with Account Teams enabled. Which two user groups can add team members on the Account? Choose 2 answers

  • A. The current Account Owner can add team members.
  • B. Any Account Team Member with read access on the Account
  • C. Someone above the Account Owner in the Role Hierarchy with read access
  • D. The user specified as the Manager on the Owner's User record

Answer: C


NEW QUESTION # 60
Universal Containers (UC) operates worldwide with offices in more than 100 regions in 10 different countries and has established a very complex role hierarchy to control data visibility. In the new fiscal year UC is planning to reorganize the roles and reassign accounts owners.
Which three features could an architect recommend to avoid problems on this operation? Choose 3 answers

  • A. Deferred Sharing Recalculation
  • B. Partition data using Divisions
  • C. Parallel Sharing Rule recalculation
  • D. Granular Locking
  • E. Skinny table

Answer: A,C,D


NEW QUESTION # 61
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 answers

  • A. Criteria-based Sharing Rules
  • B. Owner-based Sharing Rules
  • C. "View All" Profile settings
  • D. Manual Sharing

Answer: C,D


NEW QUESTION # 62
......

Sharing-and-Visibility-Designer 2024 Training With 208 QA's: https://www.actual4dumps.com/Sharing-and-Visibility-Designer-study-material.html

Sharing-and-Visibility-Designer Exam Preparation Material with New Sharing-and-Visibility-Designer Dumps Questions.: https://drive.google.com/open?id=1ZYcl094jk15qp-7_DPBE2kYy3qFr9BFr