Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

Salesforce Admin Certification QUESTIONS AND ANSWERS 100% CORRECT

Beoordeling
-
Verkocht
-
Pagina's
16
Cijfer
A+
Geüpload op
21-09-2022
Geschreven in
2022/2023

Salesforce Admin Certification How many custom fields can be created on an object? Correct Answer: Up to 800 custom fields per object for unlimited Edition. Master-Detail Relationships Correct Answer: .Child records must have a parent .Record level security cascades from the parent to the child records .Record deletion cascades from the parent to the child records (delete the parent, the child is also deleted) .Roll-up summary fields can be created on the parent record .Standard objects cannot be the detail object in the relationship Look-up relationships Correct Answer: .A parent isn't needed, meaning the relationship is optional .There is no impact to security. Security will be set independent of any related object .Roll-up summary fields can not be created on lookup fields What is the roll-up summary fields limit? Correct Answer: Can display the sum, min, or max value of a field in a related list, or the record count of all records listed in a related list. 10 Visualforce expression Correct Answer: is any set of literal values, variables, sub-expressions, or operators that can be resolved to a single value. Method calls aren't allowed in expressions. The expression syntax in Visualforce is: {! expression } Coarse-grained components Correct Answer: Coarse-grained components provide a significant amount of functionality in a single component, and might add a lot of information and user interface to the page it's used on. These components adds many fields, sections, buttons, and other user interface elements to the page in just one line of markup Fine-grained components Correct Answer: Fine-grained components provide more focused functionality, and enable you to design the page to look and behave the way you want. output components Correct Answer: components that output data from a record and enable you to design a view-only user interface. Sandbox storage limits Correct Answer: .Partial Copy sandboxes have a 5 GB of files and a 5 GB of data storage limit. .Developer Pro sandboxes have a 1 GB of files and a 1 GB of data storage limit. .Developer sandboxes have a 200 MB of files and a 200 MB of data storage limit. .Full sandboxes have the same storage limit as your production organization. Standard List Controller Correct Answer: The standard list controller allows you to create Visualforce pages that can display or act on a set of records. Adding the standard list controller to a page is very similar to adding the standard (record) controller, but with the intent of working with many records at once, instead of one record at a time. The standard (record) controller makes it easy to get a single record loaded into a variable you can use on a Visualforce page. The standard list controller is similar, except instead of a single record, it loads a list, or collection, of records into the variable. How do you emulate salesforce1 from your desktop browser? Correct Answer: Add " one/" after your salesforce instance name in the URL. Limitations of dynamic dashboards by Edition Correct Answer: Enterprise edition can have up to 5, Unlimited and Performance Edition can have up to 10 and Developer Edition up to 3. What is a controller? Correct Answer: Controllers typically retrieve the data to be displayed in a Visualforce page, and contain code that executes in response to page actions, such as a button being clicked. The primary purpose of most controllers is to retrieve data for display, or handle updates to data. Describe the action types Correct Answer: .Quick actions (New Account, New Event, New Task) .productivity action (Call) .standard buttons (Edit, Delete, Clone, Send an Email) .Chatter actions (Poll, Post) Apex triggers Correct Answer: Apex triggers enable you to perform custom actions before or after events to records in Salesforce, such as insertions, updates, or deletions. Use triggers to perform tasks that can't be done by using the point-and-click tools (declarative) in the Salesforce user interface. There are two types of triggers. .Before triggers are used to update or validate record values before they're saved to the database. .After triggers are used to access field values that are set by the system (such as a record's Id or LastModifiedDate field), and to effect changes in other records. The records that fire the after trigger are read-only. What is the difference between and license? Correct Answer: F is a PaaS product. It contains an application or Framework for you to build Apps onto. This license gives no access to leads, accounts or opportunities. You would have to build Apps, Tabs, Custom Objects, Workflow Rules all yourself to design the kind of system that you want to use. S is a SaaS with their three core products, Sales Cloud, Service Cloud and Marketing Cloud. When you purchase S Licenses for Sales Cloud, you get all of your normal tabs (Leads, Accounts etc) plus the ability to customise the whole platform using F! Who See What Correct Answer: Org Access: Able to restrict access by IP address and login hours through profiles. At the org level, only IP addresses are set. Login hours are only set at the Profile level. Object Access: Determine through assigned profile. Record Access: Determine through role hierarchy. E.g. US regional manager can see data in the US region only. Field Access: Through field level security. Restricts field access (read/write/non) by profile. Standard profiles Correct Answer: group, contact manager, professional edition have standard profiles only. Org Access through IP ranges Correct Answer: IP ranges can be set at the company level. Users outside the IP ranges set at the Company level will be sent an activation code. IP ranges can be set at the profile level. Users outside the IP ranges set at the Profile level will be denied access. Login hours Correct Answer: Login hours are set at the profile level only. Field level security Correct Answer: only available in enterprise, unlimited and developer editions. Custom Object Tabs Correct Answer: Allows you to create, read, update and delete the data records in your custom objects. Web Tabs Correct Answer: displays any web URL in a tab within your Salesforce application. Visualforce Tabs Correct Answer: display customer user-interface pages created Visualforce. Lightning Page Tab Correct Answer: Lightning Page Tabs let you add Lightning Pages to the Salesforce1 navigation menu. Lightning Page tabs don't work like other custom tabs. Once created, they don't show up on the All Tabs page when you click the Plus icon that appears to the right of your current tabs. Lightning Page tabs also don't show up in the Available Tabs list when you customize the tabs for your apps. What are the Salesforce standard objects? Correct Answer: The following standard objects can be renamed: Accounts, Activities, Articles, Assets, Campaigns, Cases, Contacts, Contracts, Documents, Events, Ideas, Leads, Libraries, Opportunities, Opportunity Products, Partners, Price Books, Products, Quote Line Items, Quotes, Solutions, and Tasks. The following standard objects cannot be renamed: Home, Chatter, Forecasts, Reports, and Dashboards. Apex Triggers Correct Answer: Blocks of Apex code that are executed before and/or after any record action, such as create, update, or delete. Used for complex business logic automation and where such functionality is too complicated to be implemented using validation rules or workflow rules, such as field updates. Master Picklist Correct Answer: A complete list of picklist values available for a record type or business process. Bulkifying Apex Correct Answer: Bulkifying Apex code refers to the concept of making sure the code properly handles more than one record at a time. What is a cross object formula field? Correct Answer: Created through the simple formula tab. Cross-object formulas are formulas that span two or more objects by referencing merge fields from related records. Cross-object formulas can reference merge fields from a master ("parent") object if an object is on the detail side of a master-detail relationship. Cross-object formulas also work with lookup relationships. You can reference fields from objects that are up to 10 relationships away. Cross-object formulas are available anywhere formulas are used except when creating default values. If you create a formula that references a field on another object and display that formula in your page layout, users can see the field on the object even if they don't have access to that object record. For example, if you create a formula field on the Case object that references an account field, and display that formula field in the case page layout, users can see this field even if they don't have access to the account record. Review delegated administrators Correct Answer: What is Salesforce Classic Lite Correct Answer: formerly Mobile Lite, Salesforce Classic Lite is a Salesforce mobile app. Service Cloud - Marcros Correct Answer: Automatically complete repetitive tasks on cases, such as selecting the right email templates, so that agents can spend time doing more important things. queues Correct Answer: Every time a queue is created, this creates a new customized list. Channels Correct Answer: The different ways your customers can reach out to your company are called channels, and they can include something as traditional as a phone number to something as revolutionary as video conferencing on a mobile app. Accounts Correct Answer: Accounts are the companies you're doing business with. You can also do business with individual people (like solo contractors) using something called Person Accounts. Contacts Correct Answer: Contacts are the people who work at an Account. Leads Correct Answer: Leads are potential prospects. You haven't yet qualified that they are ready to buy or what product they need. You don't have to use Leads, but they can be helpful if you have team selling, or if you have different

Meer zien Lees minder
Instelling
Vak

Voorbeeld van de inhoud

Salesforce Admin Certification
How many custom fields can be created on an object? Correct Answer: Up to 800 custom fields
per object for unlimited Edition.

Master-Detail Relationships Correct Answer: .Child records must have a parent
.Record level security cascades from the parent to the child records
.Record deletion cascades from the parent to the child records (delete the parent, the child is also
deleted)
.Roll-up summary fields can be created on the parent record
.Standard objects cannot be the detail object in the relationship

Look-up relationships Correct Answer: .A parent isn't needed, meaning the relationship is
optional
.There is no impact to security. Security will be set independent of any related object
.Roll-up summary fields can not be created on lookup fields

What is the roll-up summary fields limit? Correct Answer: Can display the sum, min, or max
value of a field in a related list, or the record count of all records listed in a related list.

10

Visualforce expression Correct Answer: is any set of literal values, variables, sub-expressions,
or operators that can be resolved to a single value. Method calls aren't allowed in expressions.

The expression syntax in Visualforce is: {! expression }

Coarse-grained components Correct Answer: Coarse-grained components provide a significant
amount of functionality in a single component, and might add a lot of information and user
interface to the page it's used on.

These components adds many fields, sections, buttons, and other user interface elements to the
page in just one line of markup

Fine-grained components Correct Answer: Fine-grained components provide more focused
functionality, and enable you to design the page to look and behave the way you want.

output components Correct Answer: components that output data from a record and enable you
to design a view-only user interface.

Sandbox storage limits Correct Answer: .Partial Copy sandboxes have a 5 GB of files and a 5
GB of data storage limit.

.Developer Pro sandboxes have a 1 GB of files and a 1 GB of data storage limit.

,.Developer sandboxes have a 200 MB of files and a 200 MB of data storage limit.

.Full sandboxes have the same storage limit as your production organization.

Standard List Controller Correct Answer: The standard list controller allows you to create
Visualforce pages that can display or act on a set of records.

Adding the standard list controller to a page is very similar to adding the standard (record)
controller, but with the intent of working with many records at once, instead of one record at a
time.

The standard (record) controller makes it easy to get a single record loaded into a variable you
can use on a Visualforce page. The standard list controller is similar, except instead of a single
record, it loads a list, or collection, of records into the variable.

How do you emulate salesforce1 from your desktop browser? Correct Answer: Add "
one/one.app" after your salesforce instance name in the URL.

Limitations of dynamic dashboards by Edition Correct Answer: Enterprise edition can have up
to 5, Unlimited and Performance Edition can have up to 10 and Developer Edition up to 3.

What is a controller? Correct Answer: Controllers typically retrieve the data to be displayed in a
Visualforce page, and contain code that executes in response to page actions, such as a button
being clicked.

The primary purpose of most controllers is to retrieve data for display, or handle updates to data.

Describe the action types Correct Answer: .Quick actions (New Account, New Event, New
Task)
.productivity action (Call)
.standard buttons (Edit, Delete, Clone, Send an Email)
.Chatter actions (Poll, Post)

Apex triggers Correct Answer: Apex triggers enable you to perform custom actions before or
after events to records in Salesforce, such as insertions, updates, or deletions.

Use triggers to perform tasks that can't be done by using the point-and-click tools (declarative) in
the Salesforce user interface.

There are two types of triggers.

.Before triggers are used to update or validate record values before they're saved to the database.
.After triggers are used to access field values that are set by the system (such as a record's Id or
LastModifiedDate field), and to effect changes in other records. The records that fire the after
trigger are read-only.

, What is the difference between force.com and salesforce.com license? Correct Answer:
Force.com is a PaaS product. It contains an application or Framework for you to build Apps
onto. This license gives no access to leads, accounts or opportunities. You would have to build
Apps, Tabs, Custom Objects, Workflow Rules all yourself to design the kind of system that you
want to use.

Salesforce.com is a SaaS with their three core products, Sales Cloud, Service Cloud and
Marketing Cloud.

When you purchase Salesforce.com Licenses for Sales Cloud, you get all of your normal tabs
(Leads, Accounts etc) plus the ability to customise the whole platform using Force.com!

Who See What Correct Answer: Org Access:
Able to restrict access by IP address and login hours through profiles. At the org level, only IP
addresses are set. Login hours are only set at the Profile level.

Object Access:
Determine through assigned profile.

Record Access:
Determine through role hierarchy. E.g. US regional manager can see data in the US region only.

Field Access:
Through field level security. Restricts field access (read/write/non) by profile.

Standard profiles Correct Answer: group, contact manager, professional edition have standard
profiles only.

Org Access through IP ranges Correct Answer: IP ranges can be set at the company level. Users
outside the IP ranges set at the Company level will be sent an activation code.

IP ranges can be set at the profile level. Users outside the IP ranges set at the Profile level will be
denied access.

Login hours Correct Answer: Login hours are set at the profile level only.

Field level security Correct Answer: only available in enterprise, unlimited and developer
editions.

Custom Object Tabs Correct Answer: Allows you to create, read, update and delete the data
records in your custom objects.

Web Tabs Correct Answer: displays any web URL in a tab within your Salesforce application.

Visualforce Tabs Correct Answer: display customer user-interface pages created Visualforce.

Geschreven voor

Vak

Documentinformatie

Geüpload op
21 september 2022
Aantal pagina's
16
Geschreven in
2022/2023
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$10.49
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF


Ook beschikbaar in voordeelbundel

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
Classroom NURSING
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
4878
Lid sinds
4 jaar
Aantal volgers
3232
Documenten
55439
Laatst verkocht
1 dag geleden
NURSING

Assignments, Case Studies, Research, Essay writing service, Questions and Answers, Discussions etc. for students who want to see results twice as fast. I have done papers of various topics and complexities. I am punctual and always submit work on-deadline. I write engaging and informative content on all subjects. Send me your research papers, case studies, psychology papers, etc, and I’ll do them to the best of my abilities. Writing is my passion when it comes to academic work. I’ve got a good sense of structure and enjoy finding interesting ways to deliver information in any given paper. I love impressing clients with my work, and I am very punctual about deadlines. Send me your assignment and I’ll take it to the next level. I strive for my content to be of the highest quality. Your wishes come first— send me your requirements and I’ll make a piece of work with fresh ideas, consistent structure, and following the academic formatting rules. For every student you refer to me with an order that is completed and paid transparently, I will do one assignment for you, free of charge!!!!!!!!!!!!

Lees meer Lees minder
4.0

1185 beoordelingen

5
624
4
216
3
196
2
40
1
109

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen