Scratch orgs provide:
a. A Salesforce org that multiple developers use at the same time
b. A dedicated and disposable Salesforce environment for a developer and their project
c. A copy of the existing sandbox
d. A an
...
Scratch orgs provide:
a. A Salesforce org that multiple developers use at the same time
b. A dedicated and disposable Salesforce environment for a developer and their project
c. A copy of the existing sandbox
d. A and B - B
What is the role of sandboxes in the package development model?
a. You dont use sandboxes in the package development life cycle
b. You use sandboxes for user acceptance testing and as a staging environment
c. Its a starting point for the development process
d. Its where you test your package during continuous delivery testing
e. B and D - E
Use Dev Hub to:
a. Manage sandbox and production orgs through the command line
b. Create and manage your scratch orgs
c. Move configurations from your sandbox to your scratch org
d. Create a scratch org for another team member. - B
How do you list all available CLI commands?
a. sfdx force:commands:view
b. sfdx force:list:help
c. sfdx force:doc:commands:list
d. sfdx force:doc:commands:view
e. sfdx force:commands:doc:display - C
What information does the sfdx-project.json file contain?
a. Information required to track source and metadata with your scratch orgb. Configuration information that determines scratch org shape
c. A list of the scratch orgs you've created in Dev Hub
d. Configuration information for your sandbox and production orgs - A
What is the CLI command to create a project called MyNewApp?
a. sfdx force:project:create -a MyNewApp
b. sfdx force:create:project -a MyNewApp
c. sfdx force:create:project -n MyNewApp
d. sfdx force:project:create -n MyNewApp - D
What's an example of the CLI command to import existing Accounts sample data in a
different project?
a. sfdx force:data:tree -q Account.json
b. sfdx force:data:tree:import --contenttype data/Account.json
c. sfdx force:data:tree:import --sobjecttreefiles data/Account.json
d. sfdx force:data:tree:import -s Account.json - C
What's the CLI command to create a new Apex class called NewClass in the force-app
folder?
a. sfdx force:apex:class:create -n NewClass -d force-app/main/apex/classes
b. sfdx force:apex:class:create -n NewClass -d force-app/main/default/classes
c. sfdx force:apex:class:create -n NewClass -f force-app/main/default/apex
d. sfdx force:apex:class:create -n NewClass -f force-app/main/default/classes - B
What's the CLI command to create a new Aura component called ListView in the forceapp folder?
a. sfdx force:lightning:component:create -n ListView -f force-app/main/default/aura
b. sfdx force:lightning:component:create -n ListView -d force-app/main/aura
c. sfdx force:lightning:component:create -n ListView -f force-app/main/default/lightning
d. sfdx force:lightning:component:create -n ListView -d force-app/main/default/aura - D
What's the CLI command to synchronize changes in your local project to a scratch org
with the alias MyScratchOrg?
a. sfdx force:org:push -a MyScratchOrg
b. sfdx force:source:push -a MyScratchOrg
c. sfdx force:source:push -u MyScratchOrg
d. sfdx force:source:sync -u MyScratchOrg - C
What's the CLI command to assign a permission set called MyPermSet to provide
access to objects in an org with the alias MyTP?a. sfdx force:permset:assign -n MyPermSet
b. sfdx force:user:permset:assign -n MyPermSet -u MyTP
c. sfdx force:org:permset:assign -n MyPermSet -a MyTP
d. sfdx force:user:permset:assign -n MyPermSet -a MyTP - B
[Show More]