“Control layer” in the MVC model?
“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”
ways to run a “Flow” automatically in the future?
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?
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
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
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
workflow rule
how to improve the speed of “Schema Builder” tool
What should be used to create ‘Scratch Orgs’?
Salesforce CLI
Characteristics of @InvocableMethod
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
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