更新された2025年02月合格させるSharing-and-Visibility-Architect試験リアル練習テスト問題 [Q15-Q32]

Share

更新された2025年02月合格させるSharing-and-Visibility-Architect試験リアル練習テスト問題

無料ダウンロードSalesforce Sharing-and-Visibility-Architectリアル試験問題

質問 # 15
What is required to implement Filter-Based Opportunity Territory Assignment?

  • A. Define a Territory assignment rule with filter criteria for Filter-Based Opportunity Territory Assignment.
  • B. Define a custom Apex class for Filter-Based Opportunity Territory Assignment in the system.
  • C. Define an account assignment with a filter criteria rule for Filter-Based Opportunity Territory Assignment.
  • D. Define an Opportunity assignment rule with filter criteria for Filter-Based Opportunity Territory Assignment.

正解:B


質問 # 16
When you make changes to roles and groups Salesforce locks the entire group membership table, which makes it impossible to process group changes in multiple threads to increase throughput on updates.

  • A. Granular Locking

正解:A


質問 # 17
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. SOQL Injection
  • C. FLS check
  • D. Data Access Control

正解:B、D


質問 # 18
Universal Containers (UC) has 200 distributors that use Partner Community licenses.
Partners cannot see each other's data, but UC is also trying to give more visibility to data for certain individuals at a distributor.
HOW can an Architect give users in the partner user role access to all Case and Container records owned by any user, regardless of role, at the same distributor?

  • A. Create sharing sets.
  • B. Give super user permission to the individual partner users.
  • C. Create a Permission Set granting "View All" permission to Case and Container records.
  • D. Create an ownership-based sharing rule.

正解:B


質問 # 19
A developer at Universal Container is building an integration within a managed package for their internal org that requires login to an external system. The end point requires basic authentication. The Architect would like to ensure that the username and password are managed securely. Which three options should the Architect recommend to secure the credentials?

  • A. Store the credentials in named credentials that are used in the apex callout
  • B. Store the credentials in protected custom settings that are used in the apex callout
  • C. Store the credentials in a custom object using encrypted fields
  • D. Store the credentials in the apex code, which will not be available to non-admins
  • E. Store the credentials in protected custom metadata that are used in the apex callout

正解:A、B、E

解説:
Explanation
Named Credentials, Protected Custom Metadata, and Protected Custom Settings are three options to secure the credentials for the external system. They allow the developer to store the credentials in a secure way that is not exposed to other users or packages. Storing the credentials in a custom object using encrypted fields or in the apex code are not secure options


質問 # 20
What feature in Salesforce is needed to restrict access to a custom object that has Public Read/Write access?

  • A. Role Hierarchy
  • B. Page Layout
  • C. Profile
  • D. Record Type

正解:C


質問 # 21
Customer complaints for bad interactions with a customer support agent are logged as Cases and assigned to a human resources representative. The agent of the complaint should not see the case, but their manager should.
How is this accomplished?

  • A. Case is owned by the subject of the complaint, so their manager in the role hierarchy can access the record. CRED permission are removed on Case so the agent cannot read the case record.
  • B. Trigger on Case to lookup and share to the manager of an Assigned Agent custom field (the subject of the complaint) using Apex Managed Sharing.
  • C. Criteria based Sharing Rule on Case that shares to the Role Manager and above when a custom field Assigned Agent (subject of the complaint) Is not blank,

正解:B


質問 # 22
A user posts a file to the Chatter feed for a record of an object that has a Private organization-wide default.
Which statement accurately describes who can view the file by default?

  • A. The user who posted the file and users with a shared chatter post link to the file
  • B. Only the user who posted the file
  • C. The user who posted the file and users with access to the record

正解:C

解説:
Explanation
The user who posted the file and users with access to the record can view the file by default, as files posted to a record's feed inherit the record's sharing settings3. Users with a shared chatter post link to the file will not be able to view the file by default, unless they also have access to the record. Only the user who posted the file will not be able to view the file by default, as other users who have access to the record can also view it.


質問 # 23
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 password-protected.
How can this be accomplished?

  • A. Create a content delivery; during creation, the user should select the option to require 3 password to access content.
  • B. Set up an Experience Cloud site for customers to access files and share the file with customers via Chatter. Customers can then log in ta the site to access the content.
  • C. Utilize an AppExchange product for delivering password protected files to customers

正解:A


質問 # 24
Universal Containers has a global 24x7 Salesforce.com implementation that supports Sales, Services, Order Management, and various other parts of their business. They have a nested territory hierarchy, 10,000 sales users, and 20,000 support agents. Territory changes happen daily. The demand for new applications and changes to the platform is high and they follow an agile development methodology and deliver new releases every two weeks on the platform. What Salesforce.com feature would help the system recover from a maintenance restart on Salesforce.com servers?

  • A. Enable Granular Locking on the system.
  • B. Enable Filter -Based Opportunity Territory Assignment.
  • C. Enable Parallel Sharing Rule recalculation.
  • D. Enable Deferred Sharing Rule recalculation.

正解:D

解説:
Explanation
To help the system recover from a maintenance restart on Salesforce servers, the Salesforce feature that would help is enabling deferred sharing rule recalculation. This feature allows postponing the recalculation of sharing rules until a scheduled time, which can improve performance and avoid locking issues when there are frequent changes to sharing rules or role hierarchy5. Enabling granular locking or parallel sharing rule recalculation will not help, as they are related to improving performance and avoiding locking issues when recalculating sharing rules, not recovering from a maintenance restart. Enabling filter-based opportunity territory assignment will not help, as it is related to assigning opportunities to territories based on criteria, not recovering from a maintenance restart.


質問 # 25
In order to allow community users to collaborate on Opportunities, which license type must the users be given?

  • A. Customer Community Plus
  • B. Customer Community
  • C. Partner Community

正解:C


質問 # 26
A banking company uses & VIP Flag in the Contact Object that they want only Private Banking Reps to see. Which approach is recommended to meet this requirement?

  • A. Change the type of VIP Flag field to a picklist, define a new record type for the Contact Object and make the picklist field available for Editing.
  • B. Define a page layout for Contact Object and add the VIP Flag field for that layout. Remove the VIP Flag field from other layouts.
  • C. Set the Field Level Security for the VIP Flag field so that it is visible to Private Banking Rep Profile.

正解:C


質問 # 27
Universal Containers has junction object called "Job Production Facility", with 2 master-detail relationships to the Job and Production Facility custom objects. Both master records have a private sharing model.
What statement is true if a user's profile allows access (Create/Read) to the Job, but no access to the Production Facility Object?

  • A. The user will see the junction object and the link to the Production Facility.
  • B. The user will see the junction object but not the link to the Production Facility.
  • C. The user will not be able to see the junction object records or the field values.
  • D. The user will be granted read access to the Production Facility record

正解:C


質問 # 28
Which two reasons should the Architect consider regarding the use of Apex Sharing Reasons?
Choose 2 answers

  • A. Ensuring the developer can more easily troubleshoot programmatic sharing.
  • B. Ensuring there is additional criteria available for Criteria-Based Sharing.
  • C. Ensuring the Share record is not deleted upon ownership change.
  • D. Ensuring the Share record is deleted upon ownership change.

正解:A、C

解説:
Explanation
The two reasons that the architect should consider regarding the use of Apex sharing reasons are A and B.
Option A allows the developer to more easily troubleshoot programmatic sharing, as they can identify which sharing records are created by which Apex code. Option B prevents the share record from being deleted upon ownership change, as Apex sharing reasons are not subject to recalculation by Salesforce. The other options are either incorrect or irrelevant.


質問 # 29
Universal containers has a customer that meets criteria for two Enterprise Territory Management territories (Portugal and Southern Europe). What is necessary to assign opportunities to a territory for this account?

  • A. Create a criteria-based sharing rule on the opportunity to assign it to a territory
  • B. Create an Apex class that implements Filter-Based Opportunity Territory Assignment.
  • C. Create a process builder process that updates the territory field on the opportunity.
  • D. The territory with the highest territory type priority is automatically assigned to the opportunity.

正解:D


質問 # 30
Universal Containers (UC) delivers training and courses to students and companies. UC is implementing a Salesforce Customer Community for its students granting them a Customer Community license. As part of the community requirements, UC asked to give students access to cases that are related to their account in the UC community.
What is the optimum sharing technique that can achieve the requirements?

  • A. Create a sharing set to share cases with the students.
  • B. Create a share group to share cases with the students.
  • C. Use Apex sharing to share cases with the students.
  • D. Create a sharing rule to share cases with the students.

正解:A


質問 # 31
Dreamforce presenters need to be able to edit their presention details (summary, presenter biographies, etc) on a private custom object in Salesforce (Presentation). All presenters for a presentation are captured on a Presenters juction object between Presenter and User.
How can this be accomplished?

  • A. Trigger on Presenter junction object that adds the user to the Sales Team for the Presentation record.
  • B. Trigger on Presenter junction object that uses Apex Managed sharing to add or remove access to the related Presentation record.
  • C. Give Edit rights to the Presentation record via a Permission set that is given to the Presenters for a record.

正解:B


質問 # 32
......


Salesforce Certified Sharing and Visibility Architect認定は、Salesforceで複雑な共有と可視化ソリューションを作成および管理する能力を示す、世界的に認知された資格です。この認定は、世界のトップ企業や組織によって認められており、Salesforceエコシステムでキャリアを進めたいプロフェッショナルにとって貴重な資産となります。

 

Sharing-and-Visibility-Architect問題集100パー合格保証には最新のサンプル:https://www.passtest.jp/Salesforce/Sharing-and-Visibility-Architect-shiken.html

あなたを合格させる試験には100%確認済みSharing-and-Visibility-Architect試験問題:https://drive.google.com/open?id=1dbXR1ZOT31Xak2-D6a9JwdcSPPapQetY