salesforce certified sharing and visibility designer

Beschreibung

Quiz am salesforce certified sharing and visibility designer, erstellt von Filipe Lopes am 24/08/2018.
Filipe Lopes
Quiz von Filipe Lopes, aktualisiert more than 1 year ago
Filipe Lopes
Erstellt von Filipe Lopes vor mehr als 6 Jahre
469
7

Zusammenfassung der Ressource

Frage 1

Frage
T/F Customer Portal and Partner Portal users can create content deliveries?
Antworten
  • True
  • False

Frage 2

Frage
How much bandwidth is allocated to content deliveries within a 24-hour period?
Antworten
  • 5
  • 10
  • 15
  • 20

Frage 3

Frage
What happens when there are no record types in common between a user profile and a library?
Antworten
  • The default record type of the library becomes available to the users with that user profile who are sharing files with the library.
  • The default record type of the library becomes do not available to the users with that user profile who are sharing files with the library.
  • The default record type of the library becomes available to the users with that profile who are sharing files with the library.

Frage 4

Frage
What are the available library tagging rules? 3 correct
Antworten
  • Open Tagging - no restrictions
  • Guided Tagging - contributors may enter any tag they would like, but a list of suggested tags are offered.
  • Restricted Tagging - contributors must select from a list of suggested tags
  • Guided Tagging - contributors may not enter any tag they would like, but a list of suggested tags are offered.
  • Open Tagging - some restrictions

Frage 5

Frage
Which file type of content delivery are not supported for online views?
Antworten
  • Any document over 15 MB is not supported.
  • Any document over 25 MB is not supported.
  • Any document over 50MB is not supported.
  • Any document over 100 MB is not supported.

Frage 6

Frage
Sharing rows : Grant users or groups access to a specific record.
Antworten
  • True
  • False

Frage 7

Frage
T/F Removing someone from an Account Team removes them from the Opportunity Team?
Antworten
  • True
  • False

Frage 8

Frage
What is the Partner Community license best used for?
Antworten
  • B2B that need access to sales data (up to 5 thousand users)
  • B2B that need access to sales data (up to 1 thousand users)
  • B2B that need access to sales data (up to 1 million users)
  • B2B that need access to sales data (up to 100 thousand users)

Frage 9

Frage
T/F Do records have viewer permission for files posted to their feeds?
Antworten
  • True
  • False

Frage 10

Frage
T/F You can share an opportunity or case to users without Read access on the Account and where you do not have the ability to share the Account.
Antworten
  • True
  • False

Frage 11

Frage
How many content-delivery views are allowed within a 24-hour period?
Antworten
  • 10 000
  • 5 000
  • 20 000
  • 1 000

Frage 12

Frage
If you have access to an account's child record, you have read only permission to the account?
Antworten
  • True
  • False

Frage 13

Frage
T/F Objects on the detail side of a Master-Detail object do not have a sharing table?
Antworten
  • True
  • False

Frage 14

Frage
T/F The "With Sharing" keyword enforces the user's permission, FLS, and sharing rules?
Antworten
  • False. "With Sharing" only enforces sharing rules.
  • True. "With Sharing" only enforces sharing rules.

Frage 15

Frage
T/F A class declared as "with sharing" will never call code that operates as "without sharing".
Antworten
  • True. If an inner class is declared as "Without Sharing", it will execute without enforcing the sharing rules that apply to the context user.
  • False. If an inner class is declared as "Without Sharing", it will execute without enforcing the sharing rules that apply to the context user.

Frage 16

Frage
T/F Custom sharing reasons can be defined for standard and custom objects.
Antworten
  • False. Custom sharing reasons can only be written for custom objects.
  • True. Custom sharing reasons can only be written for custom objects.

Frage 17

Frage
T/F Object shares can be written for standard and custom objects.
Antworten
  • True
  • False

Frage 18

Frage
T/F Objects with a default sharing setting of "Public Read/Write" have a share table?
Antworten
  • True
  • False

Frage 19

Frage
T/F The UserOrGroupID can be assigned to a Role ID.
Antworten
  • True. The UserOrGroupID should instead be assigned to the matching Group ID from the Group table.
  • False. The UserOrGroupID should instead be assigned to the matching Group ID from the Group table.

Frage 20

Frage
How do you check the field-level read permission of the contact's email field before querying the field?
Antworten
  • if (Schema.sObjectType.Contact.Fields.isAccessible()){ Contact c = SELECT Email FROM Contact; }
  • if (Schema.sObjectType.Contact.Fields.isAccessible){ Contact c = [SELECT Email FROM Contact WHERE IF== :ID]; }
  • if (Schema.sObjectType.Contact.Fields.isAccessible()){ Contact c = [SELECT Email FROM Contact WHERE IF= :ID]; }
  • if (Contact.Fields.isAccessible()){ Contact c = [SELECT Email FROM Contact WHERE IF= :ID]; }

Frage 21

Frage
A Account Data Skew is A situation where an Account's parent object has more than 10,000 child objects.
Antworten
  • True
  • False

Frage 22

Frage
Apex sharing reason is a method to track why a record is shared with ...
Antworten
  • user
  • group
  • user or group

Frage 23

Frage
What two things make up an Apex sharing reason? 2 Answers
Antworten
  • Label, which displays the reason
  • Name, which displays the reason
  • Name, which is used when referencing the reason through the API and Apex
  • Label, which is used when referencing the reason through the API and Apex

Frage 24

Frage
How would an apex sharing reason called Recruiter for a custom object Job be called?
Antworten
  • Schema.Job__Share.rowCause.Recruiter__c
  • Schema.Job__Share.rowCause.Recruiter
  • Job__Share.rowCause.Recruiter__c
  • Schema.Job__Share

Frage 25

Frage
The best way to avoid accidentally revealing secured info through Apex classes is using the "With Sharing" keyword to enforce sharing rules
Antworten
  • True
  • False

Frage 26

Frage
How can you enforce CRUD/FLS in Apex web services, Lightning components, and controllers?
Antworten
  • Call isAccessible() on all SObject fields after returning data to the user
  • Call isAccessible() on all SObject fields before returning data to the user
  • Call isAccessible() on all SObject fields before returning data to the profile
  • Call isAccessible() on all SObject fields after returning data to the profile

Frage 27

Frage
How do you check the field-level update permission of the contact's email field before updating it?
Antworten
  • Schema.sObjectType.Contact.fields.Email.isUpdateable())
  • if (Schema.sObjectType.Contact.fields.Email.isUpdateable()) { //Update contact email }
  • Schema.sObjectType.Contact.fields.Email.isUpdateable(//Update contact email))

Frage 28

Frage
Configure child objects to be Controlled by Parent whenever possible can you avoid creating implicit shares?
Antworten
  • True
  • False

Frage 29

Frage
Company's can't benefit from deferred sharing
Antworten
  • True
  • False

Frage 30

Frage
Customers can benefit from granular locking
Antworten
  • True
  • False

Frage 31

Frage
Security Health Check is...
Antworten
  • A free application you can use to check your security related settings but don't make recommendations for improving security
  • A paid application you can use to check your security related settings and that will make recommendations for improving security
  • A paid application you can use to check your security related settings and that will make recommendations for improving healt
  • A free application you can use to check your security related settings and that will make recommendations for improving security

Frage 32

Frage
T/F If a user with the "View encrypted data" permissions grant login access to another user, the user will view the encrypted data in plain text.
Antworten
  • True
  • False

Frage 33

Frage
T/F You can use validation rules or Apex to validate encrypted fields data
Antworten
  • True
  • False

Frage 34

Frage
T/F Encrypted fields can be converted into another data type and other data types can be converted into encrypted fields.
Antworten
  • True
  • False

Frage 35

Frage
People can't see everyone else in the community and vice versa.
Antworten
  • True
  • False

Frage 36

Frage
You can define access checks in Apex that make a button a VF page available only if a user has the appropriate custom permission , is an example of a custom permission?
Antworten
  • True
  • False

Frage 37

Frage
Role groups gives users assigned to a role access to records owned by or shared to members of subordinate roles, and records shared to the subordinate roles themselves.
Antworten
  • True
  • False

Frage 38

Frage
What's the recommended max depth of a role hierarhy?
Antworten
  • 5
  • 8
  • 3
  • 10

Frage 39

Frage
How Much Visibility Do Managers Get To Standard Objects Their Subordinates Own or have Shared With Them?
Antworten
  • Less level of access.
  • The same level of access.
  • More level of access.

Frage 40

Frage
Create a "dummy" or "integration" user to own the data, then use sharing rules or apex to share data to the appropriate groups is a possible security tactic that you should employ if you don't want anyone including the record owner, to be able to delete or share the record.
Antworten
  • True
  • False

Frage 41

Frage
Page layout and field-level security settings don't determine which fields are visible and editable.
Antworten
  • True
  • False

Frage 42

Frage
Share groups are used to specify the other external users that should have access to HVC owned records.
Antworten
  • True
  • False

Frage 43

Frage
The permission that is needed to sync files is sync files
Antworten
  • True
  • False

Frage 44

Frage
Which permission/s does a File Viewer have?
Antworten
  • View or Preview
  • Download
  • Share
  • Attach a File to a Post
  • Sync a File
  • All from the answers are correct

Frage 45

Frage
Privately Shared file --> Only the file owner, users with "Modify All Data" or "View all Data" permission, and specific file viewers can find and view this file.
Antworten
  • True
  • False
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

Physik Formeln
AntonS
Französische Revolution
Markus Grass
Abiturthemen 2016 in Deutsch für alle Bundesländer
Laura Overhoff
Geschirrkunde
malimi something
Blut und Blutkreislauf
Ulrike Renauer
Deutsche Grammatik A1-A2
Marcus Hartmann
Französische Verben
Sofia Spörri
GESKO A JOUR WS18/19
anna Meyer
GESKO A PR WS 2018/19
Caroline Hannah
METH QUANTI SS 2019
Caroline Hannah
Chirurgische Instrumente Veterinärmedizin
Lisa Nintemann