Sharing-and-Visibility-Designer Exam Question 101

Mary is Joe's manager in the role hierarchy. The OWD for a custom Invoice object is Public ReadOnly and Mary's profile is not granted the Read permission for the Invoice object.
What action can Mary take on Joe's Invoice records'?
  • Sharing-and-Visibility-Designer Exam Question 102

    Sales Operations at Universal Containers (UC) has created Public Report and Dashboard folders for sales managers that report to the VP of sales. Sales Operations currently spends a few hours each month updating users that should have access to edit items in these folders. In which two ways can UC grant access to sales managers to automate access to these Reports and Dashboards folders?
    Choose 2 answers
  • Sharing-and-Visibility-Designer Exam Question 103

    Universal Containers (UC) has a private Organization-Wide Defaults (OWD) model for the Account object and needs to control the access of records and fields according to these requirements:
    * Sales reps can view/edit only their own records and cannot access the field "segment" in account page.
    * Service reps need to view all accounts but cannot edit any information.
    * Sales managers can modify any account of reps reporting to them.
    * Service managers can modify any account.
    How can a Salesforce architect provide an optimal solution for this scenario?
  • Sharing-and-Visibility-Designer Exam Question 104

    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
  • Sharing-and-Visibility-Designer Exam Question 105

    Which two access grants are stored in the Group Maintenance tables?
    Choose 2 answers