How can a developer set up a debug log on a specific user?
How can a developer set up a debug log on a specific user?A . It is not possible to setup debug logs for users other than yourself.B . Ask the user for access to their account credentials, log in as the user and debug the issue.C . Create Apex code...
How should a developer avoid hitting the governor limits in test methods?
How should a developer avoid hitting the governor limits in test methods?A . Use @TestVisible on methods that create records.B . Use Test.loadData() to load data from a static resource.C . Use @IsTest (SeeAllData=true) to use existing data.D . Use Test.startTest() to reset governor limits.View AnswerAnswer: D
For which three items can a trace flag be configured? (Choose three.)
For which three items can a trace flag be configured? (Choose three.)A . Apex TriggerB . Apex ClassC . Process BuilderD . UserE . VisualforceView AnswerAnswer: A,B,D
developer do to meet this requirement?
The Sales Management team hires a new intern. The intern is not allowed to view Opportunities, but needs to see the Most Recent Closed Date of all child Opportunities when viewing an Account record. What would a developer do to meet this requirement?A . Create a trigger on the Account...
How can a developer determine, from the DescribeSObjectResult, if the current user will be able to create records for an object in Apex?
How can a developer determine, from the DescribeSObjectResult, if the current user will be able to create records for an object in Apex?A . By using the isInsertable() method.B . By using the isCreatable() method.C . By using the hasAccess() method.D . By using the canCreate() method.View AnswerAnswer: B
You are updating the inventory worksheet for a local tree farm
SIMULATION Project 3 of 7: Tree Inventory Overview You are updating the inventory worksheet for a local tree farm. Hide rows 29 and 30.View AnswerAnswer: See explanation below.
Which three attributes need to be defined with values in the <apex:page> tag to accomplish this?
A platform developer at Universal Containers needs to create a custom button for the Account object that, when clicked, will perform a series of calculations and redirect the user to a custom Visualforce page. Which three attributes need to be defined with values in the <apex:page> tag to accomplish this?...
What is a capability of the Developer Console?
What is a capability of the Developer Console?A . Execute Anonymous Apex code, Create/Edit code, view Debug Logs.B . Execute Anonymous Apex code, Run REST API, create/Edit code.C . Execute Anonymous Apex code, Create/Edit code, Deploy code changes.D . Execute Anonymous Apex code, Run REST API, deploy code changes.View AnswerAnswer:...
Which trigger event allows a developer to update fields in the Trigger.new list without using an additional DML statement?Choose 2 answers
Which trigger event allows a developer to update fields in the Trigger.new list without using an additional DML statement?Choose 2 answersA . Before insertB . Before updateC . After updateD . After insertView AnswerAnswer: A, B
What should a developer do to meet this requirement?
When viewing a Quote, the sales representative wants to easily see how many discounted items are included in the Quote Line Items. What should a developer do to meet this requirement?A . Create a trigger on the Quote object that queries the Quantity field on discounted Quote Line Items.B ....