
[Nov 13, 2021] Sharing-and-Visibility-Designer Test Prep Training Practice Exam Questions Practice Tests
Exam Questions Answers Braindumps Sharing-and-Visibility-Designer Exam Dumps PDF Questions
How to book the Sharing-and-Visibility-Designer Exam
These are following steps for registering the Sharing-and-Visibility-Designer Exam. Step 1: Visit to Webassessor Exam Registration Step 2: Signup/Login to Webassessor Step 3: Select the onsite proctored or online proctored delivery method of Certification Exam Step 4: Select Date, time and confirm with a payment method
For more information, please click here.
What is the duration of the Sharing-and-Visibility-Designer Exam
- Format: Multiple choices, multiple answers
- Length of Examination: 120 minutes
- Number of Questions: 60
- Passing Score: 68%
Certification Path
There is no prerequisite for this exam.
NEW QUESTION 64
Cosmic Supermarket will soon perform a large-scale realignment of account and opportunity assignments, sales teams, and territories. The administrator is considering the use of deferred sharing maintenance to postpone the processing of group maintenance operations and sharing recalculations until all the desired changes have been made in Salesforce. Which of the following are valid criteria for using this feature?Choose
2 answers.
- A. Size and complexity of the company's realignment tasks.
- B. Processing time associated with sharing rule recalculation.
- C. Frequency of locking errors during updates.
- D. Flexibility to arrange a maintenance window with customers.
Answer: A,D
NEW QUESTION 65
Sales manager at universal containers (UC) have requested viewing customer invoices in Salesforce. Invoice data is mastered in the ERP system. The architect at UC decided to surface the customer invoices in salesforce using external objects and did the following:
-Configured an external object called Invoice.
-Created a lookup relationship between account and the invoice.
How can the architect grant the sales managers access to the customer invoices data?
- A. By creating a sharing set to share invoices with users in sales manager role.
- B. By creating manual sharing to share invoices with relevant sales managers.
- C. By creating controlling the invoices object permission on the sales manager's profile.
- D. By creating sharing rules to share the invoices records with users in sales mangers roles.
Answer: C
NEW QUESTION 66
Universal Container is a global Telco that has recently implemented enterprise territory management to better align their sales teams and sales processes. They are in Q4 of the FY and they have completely revamped their territory structure and created a plan for a new structure that would support the new FY. Their current territory model has 8k territories. Their new model would be a new set of 8,5K territories, and their org limit is 10k. What enterprise territory management feature can US take advantage of in order to help them stay within their org limits?
- A. Territory Hierarchy
- B. Territory Model State
- C. Territory type priority
- D. Territory Type
Answer: B
NEW QUESTION 67
DreamHouse Realty needs an Architect to restrict users' access to export reports.
What should an Architect remove to accomplish this goal?
- A. The Export button from the report page layout
- B. The "Allow Export" on the report folder settings
- C. The "Export Reports" profile permission
- D. The "Report Manager" user permission
Answer: C
NEW QUESTION 68
Universal Containers' organization wide-defaults model is private for the Account object. A sales repeats to opportunity records.
Which level of access will the sales rep have to the related account record?
- A. Read-only access
- B. Read/Create access
- C. No access
- D. Read/Create/Edit access
Answer: A
NEW QUESTION 69
Sales executives at Universal Containers (SC) want to create list views to filter opportunities for large at-risk Opportunities. These list views should only be available to certain executives that specialize in closing problematic deals. How can UC solve this requirement?
- A. Share the List Views with the appropriate Role in the Role Hierarchy.
- B. Share the List Views with the appropriate Queue.
- C. Share the List Views with the appropriate Public Group.
- D. Share the List Views with the appropriate individual users.
Answer: C
NEW QUESTION 70
Universal Containers uses 75,000 distributors that have close to 1 million total users. Distributors need opportunities assigned to the distributor for delivery.
What license recommendation will meet distributor needs?
- A. Sales Cloud
- B. Customer Community Plus
- C. Customer Community
- D. Partner Community
Answer: D
NEW QUESTION 71
The sales manager in Japan have asked the sales manager in Australia to assist them with closing their deals.
How are these requirements achieved?
- A. Use opportunity teams to automatically add the sales manager as a team member.
- B. Assign the sales manager View All on the opportunity object.
- C. Create ownership-based sharing rule.
- D. Use sharing set to give the sales manager access to the deals.
Answer: A
NEW QUESTION 72
Universal Containers (UC) service reps are assigned to a profile which has "View All" in Case object (Private OWD). To make sure service reps have access to all relevant information to attend to customer requests, which two details should a salesforce Architects consider?
Choose 2 answers:
- A. Service reps will be able to access all the UC Account records due to Implicit Sharing.
- B. Service reps will be able to access all UC contact records if they are controlled by parent.
- C. Service reps will not be able to access all UC contact records if they are controlled by parent.
- D. Service reps will not be able to access all the UC Accounts records because Account OWD is private.
Answer: C,D
NEW QUESTION 73
In a recruiting application, all users should be able to see and edit all candidate records, but interviewers should NOT have access to the address of a candidate and should NOT be able to see the birth date of a candidate. How would a developer meet this requirement?
- A. Use field-level security to control access to the Address and Birth Date fields
- B. Set the organization wide default for candidates to Edit some fields
- C. Remove the Edit permission on candidate from the interviewer's profile
- D. Set the organization wide defaults for candidates to Read-Only
Answer: A
NEW QUESTION 74
Which three capabilities are available with Enterprise Territory Management?
Choose 3 answers
- A. Metadata API support
- B. Assignment of Territory on Opportunity
- C. Integration with Collaborative Forecasting
- D. Create a public group with Territory.
- E. Share a report or dashboard folder with a Territory
Answer: A,B,C
NEW QUESTION 75
Universal Containers (UC) has 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 with a fulfillment ID input attribute.
- B. Provide each partner with their own Salesforce login set to PRI Enabled on the profile.
- C. Set the Orders object's sharing settings of Private in the Org-Wide Defaults.
- D. Query the Orders object with Dynamic SOQL based upon the fulfillment ID.
- E. Develop a custom Apex web service using the "With sharing" keyword.
Answer: A,C,E
NEW QUESTION 76
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. SOQL Injection
- B. FLS check
- C. Data Access Control
- D. Arbitrary Redirects
Answer: A,C
NEW QUESTION 77
At Universal Containers, Accounts and Contracts are normally visible to all employees, and Proposals center owner and managers. However, some Proposals are considered confidential and are managed by a Strategic should not be visible to anyone in the Sales group other than owner and the strategic team.
How should the architect design for this requirement?
- A. Disable Grant Access Using Hierarchies and set an Owner_Based Sharing rule for Strategic Deals team
- B. Proposal Owner set to the Strategic Deals Team Queue and create an center- base sharing rule to grs
- C. Proposal Owner set to the Strategic Deals Team Queue and set the Account relationship to Master-Dvt.
- D. Disable Grant Access Using Hierarches and set a Criteria-based Sharing rule for Strategic Deals team.
Answer: D
NEW QUESTION 78
Besides their own team accounts, sales managers at Universal Container need to have READ access to all other countries.
Role hierarchy was implemented accordingly (based on countries) but a Sales manager in the US comp records of the same segment in Canada.
What should be done to grant access in a proper way?
- A. Create a public group and include all accounts of the same segment and grant access through.
- B. Change the role hierarchy and put all the sales managers in the US and Canada as the same role.
- C. Create owner-based sharing rule to grant access to account records that have the same segment.
- D. Create criteria-based sharing rule to grant access to account records that have the same segment.
Answer: D
NEW QUESTION 79
Universal Containers uses 75,000 distributors that have close to 1 million total users. Distributors need opportunities assigned to their distributor for delivery.
What license recommendation will meet distributor needs?
- A. Custom Community
- B. Sales Cloud
- C. Customer Community Plus
- D. Partner Community
Answer: D
NEW QUESTION 80
The IT Director of Cosmic Solutions would like to prevent Cross-Site Request Forgery (CSRF) attacks on the company's website. Which of the following is a defense mechanism provided by Salesforce that can prevent these attacks?Choose 1 answer.
- A. Anti-CSRF Token
- B. Anti-CSRF Security
- C. Security Token
- D. CSRF Protection
Answer: A
NEW QUESTION 81
The system administrator of Cosmic Enterprises has created a dummy user in Salesforce. The user owns more than 15,000 account records that were recently obtained from a third-party database. A sharing rule has been created to share records owned by this user with all the sales managers and a few other users of the company.
There are performance issues whenever there is a change in the role hierarchy. Which of the following actions should a Solution Architect recommend to improve performance?Choose 3 answers.
- A. The dummy user should be placed at the bottom of the role hierarchy.
- B. The dummy user should be placed at the top of the role hierarchy.
- C. An account hierarchy should be established for the accounts owned by the dummy user.
- D. If possible, the dummy user should not be assigned to a role in the role hierarchy.
- E. No more than 10,000 account records should be owned by the dummy user.
Answer: B,D,E
NEW QUESTION 82
What should the Architect do to ensure Field-Level Security is enforced on a custom Visualforce page using the Standard Lead Controller?
- A. Nothing; Field-Level Security will automatically be enforced.
- B. Use the {!Schema.sObjectType.Lead.fields.isAccessible()} expression
- C. Use the "With Sharing" keyword on the Standard Lead Controller.
- D. Use the Schema.SObject.Lead.isAccessible() method.
<apex:outputText value="{!contactName}" rendered="{!$ObjectType.Contact.fields.Name.Accessible}" />
Answer: A
NEW QUESTION 83
Cloud Kicks needs to restrict login access to the Salesforce application.
What are two features an Architect should recommend using to accomplish the goal? (Choose two.)
- A. Profile-based IP restrictions
- B. Organization-wide login hour restrictions
- C. Role-based IP restrictions
- D. Profile-based login hour restrictions
Answer: A,D
NEW QUESTION 84
How would you make sure Visualforce page is security proof? Choose 3 answers
- A. Manually check for cross site
- B. Use web application tool for security
- C. Submit to force security scanner
- D. Use debug to check hijacked requests
- E. Manually check for sql injection
Answer: B,C,D
NEW QUESTION 85
An External Object is created to show Invoices from an external accounting system. When viewing the External Object, a user should only access invoice records the user is authorized to see.
What two actions are required to achieve the above requirement? Choose 2 answers
- A. Grant access to the External Object to only the Account Manager profile.
- B. Create an owner based sharing rule to grant visibility to the Invoice object.
- C. Restrict access to data in the accounting system.
- D. Setup External Object to use OAuth to connect to the Accounting system.
Answer: A,D
NEW QUESTION 86
A Sales Rep at Universal Containers wants to create a dashboard to see how his sales numbers compare with his peers.Assuming a Private model, which two permissions would the Sales Rep need to meet this requirement?
- A. Manage Custom Report Types
- B. Manage Dashboards
- C. View All Data
- D. Customize Application
Answer: B,C
NEW QUESTION 87
Universal Container maintains job info in a Custom object that contains sensitive information. The user who owns the record and all users in the delivery profile are the only users who should be able to view and edit job records. Which three platform sharing tools are required to support the above requirements?
- A. Grant access using hierarchy sharing setting on the job object set to false (Missed)
- B. View all data profile permission on the delivery profile (Missed)
- C. Criteria-Based sharing rule for the Delibery Profile on the job obj (Your Answer)
- D. Modify all permission for job object on the delivery profile
- E. Organization-wide default sharing setting of private on the job object (Missed)
Answer: A,C,E
NEW QUESTION 88
......
Download Free Salesforce Sharing-and-Visibility-Designer Real Exam Questions: https://www.practicedump.com/Sharing-and-Visibility-Designer_actualtests.html
Sharing-and-Visibility-Designer Exam Dumps, Sharing-and-Visibility-Designer Practice Test Questions: https://drive.google.com/open?id=14F6bb7RXf6xt-ub75zzkGUtQEaLRROL_