PD1 Cert Flashcards
“Control layer” in the MVC model?
- Visualforce Controllers
- Apex Custom Controllers
“My Domain” needs to be deployed if -→
Lightning components need to be used in Lightning tabs, Lightning Pages, as standalone apps, as actions and action overrides, or as custom lightning page templates
how to access a compound data type such as geolocation?
__s
“Application Events” vs “ Component Events”
Application Events -→ allow all components on a page, regardless of the containing component, to respond to an event
Component Events -→ can only be handled by components in the firing components containment hierarchey
Examples of Limits enforced by “Apex Runtime”
- time executing a SOQL query
- total number of records retrieved by SOQL queries
- CPU time per transaction
ways to run a “Flow” automatically in the future?
- replace the autolaunched flow with a schedule triggered flow
- invoke the flow from an Apex job that runs weekly
what tool can be used to create a wizard like interface where details can be entered on one screen and a calculation displayed on the next screen ?
flow builder
Things that can be created using the lightning app builder?
- custom home pages
- custom record pages
- single-page apps
most appropriate place to put functions that can be called by any Javascript code
Helper file
Helper File =
Component File=
Controller File =
Design File=
Helper File = most appropriate place to put functions that can be called by any Javascript code in a component bundle
Component File = contains the markup for the component
Controller File = contains functions that are typically called as a result of a browser or platform event
Design File = exposes attributes of the component that can be modified from an interface such as lighting app builder
events that are fired when an Aura component loads on a page
- init
- render
- afterRender
What is a “Batch Apex Job”?
-logic that can be set to run at regular intervals and perform the required logic
Characteristics of a multi-tenant environment in context of platform upgrades
- salesforce upgrades are automatic
- sandboxes are upgraded prior to production environments so that the changes can be previewed and tested
- all customizations are specified as metadata, allowing for easy upgrades
indirect lookup relationship?
links a child external object to a parent standard or custom object
*
components that if a field is referenced, the reference should be deleted or updated first before the field can be deleted
- apex class
- apex trigger
- visualforce page
- visualforce component
workflow rule
- field update
- criteria based sharing rule
- flow
- jobs
how to improve the speed of “Schema Builder” tool
- the map can be used to navigate objects of interest
- if the “hide relationships” option is selected, performance is improved
- the filter can be used to only display objects of interest
What should be used to create ‘Scratch Orgs’?
Salesforce CLI
Characteristics of @InvocableMethod
- must be declared as static
- only one method can be defined per Apex Class
- method can be declared as public or global
how should a developer write unit tests for a private method in an Apex Class?
use the “@Test Visible” annotation
@TestVisible -→ annotation allows test methods to access private or protected members of another class outside the test class (members include methods, member variables, and inner classes)
what should a developer do to check the code coverage of a class after running all tests?
view the Overall Code Coverage panel of the Tests tab in the developer console
Characteristics of “ChangeSet Deployments”
Change set -→ can be used to send customizations from one Salesforce org to another
- Changesets can only be used between related organizations
- deployment is done in a one-way, single transaction
- sending a changes between two orgs requires a deployment connection
Scratch org
salesforce environment that can be easily created to support agile development and continuous integration
*Salesforce CLI is used to manage and create scratch orgs
What should a developer use to fix a lightning web component bug in a sandbox?
VS code
define “Bulk API”
provides a programmatic option to asynchronously upload, query, or delete large data sets in your Salesforce org
random APEX characteristics:
- classes are final by default
- top-level class can only have one inner class level
Valid “External ID” data types/fields
- number
- text
Characteristics of Debug Logs
- the amount of information logged in the debug log can be controlled by the “log level”
- to view Debug logs, “Manage Users” or “View All Data” permission is needed
- Debug log levels are cumulative, where FINE log level includes all events logged at the DEBUG, INFO, WARN, and ERROR fields
(NONE-→ERROR-→WARN-→INFO-→DEBUG-→FINE-→FINER-→FINEST)
which three data types can a SOQL query return?
- integer
- sObject
- List
how to use “External ID” to relate records:
-add related records by using a custom External ID field on the parent record
if you have more than one trigger that is defined on an object for the same event, can the order of execution be guaranteed?
NO, order of Execution cannot be guaranteed in this scenario
how does the lightning component framework help developers implement solutions faster?
by providing device awareness for mobile and desktops
**keyword in the question was Lightning Component Framework
what is the purpose of Unit Tests (using the @isTest functionality)
verifying whether a particular piece of code is working properly
Getter & Setter method characteristics:
- Getter methods return values from a controller. Every value that is calculated by a controller and displayed on a page must have a corresponding getter method, including any Boolean variables
- Setter methods pass user-specified values from page markup to a controller. Any setter methods in a controller are automatically executed before any action methods
- getter method is always required to access values from a controller, setter method is not always necessary to pass values into a controller
- no guaranteed order in which Apex methods (such as getter, setter) and variables are processed by a controller extension
characteristics in regards to governor limits of a execute() method of an Apex class the implements Batchable Interface
- the apex governor limits are reset for each iteration of the execute() method
- the apex governor limits might be higher due to the asynchronous nature of the transaction
operations that can be performed using a formula field?
- displaying an image based on the opportunity amount
- calcualting a score on a lead based on the information from another field
what do we use Apex Getter and Setter methods for?
when we want to refer to Apex class variables in a Visualforce page
which tools run a script that “deploys” to a sandbox?
- VSCode
- SFDX CLI
which tools run a script that “deploys” to a sandbox?
- VSCode
- SFDX CLI
max recursive trigger stack depth? (governor limits)
16 stacks
what tools can you use for custom user interfaces in Salesforce Classic vs Lightning?
Salesforce Classic -→ Visualforce page
Lightning -→ Lightning Component or Visualforce page (obviously lightning component is the preference)
phases in the Salesforce Aura Application Event propagation framework?
- Capture
- Bubble
- Default
where to find information about the status of batch or future events?
- Apex Flex Queue
- Apex Jobs
what to remember when debugging a database.insert() exception?
database.insert() has a return type of “SaveResult” that can be used for debugging
what happens when you try to assign a list variable to something that is not a list variable?
exception
Formula’s characteristics:
- formulas can reference values in related objects
- formulas are calculated at runtime and are not stored in the database
ways to ensure field-level security is applied while using Apex?
- .stripInaccessible (****preferred)
- WITH SECURITY_ENFORCED clause on SOQL
- describefieldresult class and its method inAccessible
in a SOQL query if you don’t generate/create an aggregate function an alias, what does the alias become
expri
*where i denotes the order of the aggregated files with no explicit alias, i starts at 0
*aggregate functions -→ AVG(),SUM(),MAX(),MIN(),COUNT(),COUNT_DISTINCT()
steps that allow a custom SVG to be included in a Lightning web Component?
- Reference the getter in the HTML template
- import the static resource and provide a getter for it in Javascript
- upload the SVG as a static resource
which annotation exposes an Apex class as a RESTful web service?
@RestResource
Trigger “Best Practices” in Salesforce?
- one trigger per object
- context-specific handler methods (or helper classes)
- bulkify your code
techniques to prevent SOQL “injection”
-String.escapeSingleQuotes()
-static queries with Bind variables
- type casting
- replacing characters
- allowlisting
Test coverage standards:
-75% code coverage on Apex classes
-1% code coverage on Apex triggers(atleast one line of code for your trigger)
-75% code coverage across org(classes & triggers combined)
Governor Limits:
- 100 synchronous SOQL queries / 200 asynchronous SOQL queries
- 150 DML statements
- 20 SOSL queries (search terms)
- 50000 records (retrieved by SOQL queries)
- 10000 records (using Database. class functionality)
- 2000 records (number of records retrieved by a single SOQL query)
- 16 (recursive stack depth)
- 100 HTTP callouts in a transaction
three lines of code required to create a Lightning component on a Visualforce page?
$Lightning.createComponent
$Lightning.use
security consideration in regards to using Lightning Data Service?
-lightning data service handles sharing rules and field-level security
which tool should a developer use to troubleshoot the causes of performance issues when a custom page loads in their org?
Developer console
Characteristics for Aura component events?
- event propagates to every owner in the containment heirarchey
- if a container component needs to handle a component event, add a handleFacets=”true” attribute to its handler
relationship queries use ? (related objects)
__r
*child object is plural
sharing access to a junction object record is -→
determined by a user’s sharing access to both associated master records
how to specify mock responses in Testing HTTP Callouts in Apex?
- by implementing the HttpCalloutMock interface (*preferred)
- by using static resources with StaticResourceCalloutMock
how to use Callouts in triggers?
invoke callouts from triggers by encapsulating the callouts in @future methods
*Move the callout to an asynchronous method with @future(callout=true) annotation
what tool should you use to prevent a user from editing a field on a record after certain criteria are met?
validation rule
how can a developer check the test coverage of active process builder and flows before deploying them in a change set?
use SOQL and the Tooling API
things that present a security vulnerability on Visualforce pages and/or controllers?
-setting escape =”false”
*escape should be set =“true”
which three items can a trace flag be configured for?
- Apex Class
- Apex Trigger
- User
characteristics of exposing the Lightning Web Components?
- IsExposed() attribute set to true on the XML file
- specify the Target where the component can be added(such as a lightning page)
what type of method can be called from a Flow?
@InvocableMethod
what should a developer use to script the deployment and unit test execution as part of continuous Integration?
Salesforce CLI
some operations that can affect the number of times a trigger can fire?
- workflow rules
- flows
- roll-up summary fields
Execute Anonymous Block basic definition :
where Apex code can be ran that doesn’t get stored as metadata, but that can be compiled and executed
what does the Lightning Component Framework provide to developers?
prebuilt components that can be reused
which sandbox type supports performance testing, load testing, and staging?
Full Sandbox
how should a custom user interface be provided when a user edits an Account in Lightning Experience?
Override the accounts edit button with a Lightning Component
to use @wire to call an Apex method -→
annotate method with @AuraEnabled(cacheable=true)
*method must be static, global, or public
which Visualforce feature supports a list button that will display a Visualforce page that allows users to edit multiple records?
RecordSetVar attribute
3 ways for a developer to execute tests in an org?
- setup menu
- tooling API
- Salesforce DX
how to monitor the progress of a Queueable Apex job?
- Apex jobs page
- query the AsyncApexJob object
benefits of using declarative customizations over code?
- generally require less maintenance
- automatically update with each salesforce release
- have more flexibility related to limits (not that they have different limits than code)
if a class doesn’t DECLARE with sharing or without sharing -→
sharing is inherited
which sfdc commands can be used to add testing data to a Developer Sandbox?
- Force:data:bulk:upsert
- Force:data:tree:import
Resources in an Aura component that can contain Javascript functions?
- Renderer
- Controller
- Helper
characteristics of Custom Exceptions in Apex?
- class name must end with ‘Exception’
- custom exception class must extend the system Exception class
- class can implement one or many interfaces
when testing using existing data in for example a sandbox for testing using (@isTest(SeeAllData=True)) what might happen?
test may FAIL in the Test Framework because your using existing data
best practices when it comes to Aura component and application event handling?
- reuse the event logic in a component bundle, by putting the logic in the helper
- handle low-level events in the event handler and re-fire them as higher-level events
which two settings must be defined in order to update a record of a junction object?
- read/write access on the primary relationship
- read/write access on the secondary relationship
enforcing object and field-level permissions
look for “Schema” keyword and
isUpdateable() -→ updating context
isCreateable() -→ creating context
isAccessible() -→ check permissions context
isDeletable() -→ deleting context
field data types that can be External Id
- number
- text
capabilities of the <1tng:require> tag when loading Javascript resources in Aura Components?
- specifying loading order
- one-time loading for duplicate scripts
- loading scripts in parallel
which salesforce feature allows a developer to see when a user last logged in to Salesforce if real-time notification is not required?
Event Monitoring Log
master-detail field from _______ to _______
master-detail field from child to parent
when using Salesforce Dx, what does a developer need to enable to create manage scratch orgs?
Dev Hub
the Enhance Element from Einstein Best Action Returns a ____
list of recommendations -→ List>
*must be called with an @InvocableMethod
what are two advantages of implementing the view layer of a Salesforce application using Lightning Web Component based development over Visualforce?
- rich component ecosystem
- self-contained and reusable units of an application
how to back up all of the data and attachments in the Salesforce org once a month?
Data Export Scheduled job
code that displays the contents of a Visualforce page as a PDF
apex:page renderAs=”pdf:
example of class the implement a custom SOAP Web Service
global class Webservice Class{
private Boolean helperMethod(){/*implementation…*/}
webservice static String updateRecords(){/*implementation…*/}
to embed a flow in your Aura Component, add the
lightning:flow component to it
benefits of developing applications in a multi-tenant environment?
enforced best practices for development
Apex Interface characteristics:
- method implementation can be defined within the apex interface
- apex class must be declared using the interface keyword
- a method defined in an Apex Interface cannot have an access modifier
Salesforce resources that can be accessed from a Lightning Web Component
- static resources
- SVG resources
- Content asset files
which module provides access to methods for subscribing to a streaming channel and listening to event messages
lighting/empApi
how to find a users “default” record type?
Opportunity.SObjectType.getDescribe().getRecordTypeInfos()
*iterate thought them until isDefaultRecordTypeMapping() = true
standard apex:page configuration attributes
standardController
extensions
action
name some asynchronous tools
- batchable
- queuable
- Bulk API
Virtual keyword
provide the derived classes with the option of overriding them