CRT-450 Exam Questions

Total 387 Questions

Last Updated Exam : 22-Oct-2024

Topic 2 : Exam Pool B

In the Lightning Component framework, where is client-side controller logic contained?


A.

Apex


B.

Visualforce


C.

HTML


D.

JavaScript


E.

JavaScript





D.
  

JavaScript



Which user can edit a record after it has been locked for approval? (Choose 2)


A.

Any user with a higher role in the hierarchy


B.

A user who is assigned as the current approver


C.

Any user who approved the record previously


D.

An administrator





B.
  

A user who is assigned as the current approver



D.
  

An administrator



Which statement about change set deployments is accurate? (Choose 3)


A.

They use an all or none deployment model.


B.

They require a deployment connection.


C.

They ca be used to transfer Contact records.


D.

They can be used to deploy custom settings data.


E.

They can be used only between related organizations.





A.
  

They use an all or none deployment model.



B.
  

They require a deployment connection.



E.
  

They can be used only between related organizations.



A company would like to send an offer letter to a candidate, have the candidate sign it electronically, and then send the letter back.What can a developer do to accomplish this?


A.

Create a visual workflow that will capture the candidate’s signature electronically


B.

Develop a Process Builder that will send the offer letter and allow the candidate to sign it electronically.


C.

Install a managed package that will allow the candidate to sign documents electronically


D.

Create an assignment rule that will assign the offer letter to the candidate





C.
  

Install a managed package that will allow the candidate to sign documents electronically



Given the code block: Integer x; For(x=0;x<10; x+=2) { If(x==8) break; If(x==10) break; } System.debug(x);
Which value will the system debug statement display?


A.

2


B.

10


C.

8


D.

4





E.
  

A developer creates a custom controller and custom Visualforce page by using the following code block:public class myController {public String myString;public String getMyString() {return 'getmyString';}public String getStringMethod1() {return myString;}public String getStringMethod2() {if (myString == null)myString =
'Method2';return myString;}}{!myString}, {!StringMethod1}, {!StringMethod2}, {!myString}What does the
user see when accessing the custom page?


A.

GetMyString , , Method2 , getMystring


B.

, , Method2 , getMyString


C.

, , Method2,


D.

GetMyString , , ,





A.
  

GetMyString , , Method2 , getMystring



Why would a developer use Test. startTest( ) and Test.stopTest( )?


A.

To avoid Apex code coverage requirements for the code between these lines


B.

To start and stop anonymous block execution when executing anonymous Apex code


C.

To indicate test code so that it does not Impact Apex line count governor limits.


D.

To create an additional set of governor limits during the execution of a single test class.





D.
  

To create an additional set of governor limits during the execution of a single test class.



In which order does SalesForce execute events upon saving a record?


A.

Before Triggers; Validation Rules; After Triggers; Assignment Rules; Workflow Rules; Commit


B.

Validation Rules; Before Triggers; After Triggers; Workflow Rules; Assignment Rules; Commit


C.

Before Triggers; Validation Rules; After Triggers; Workflow Rules; Assignment Rules; Commit


D.

Validation Rules; Before Triggers; After Triggers; Assignment Rules; Workflow Rules; Commit





A.
  

Before Triggers; Validation Rules; After Triggers; Assignment Rules; Workflow Rules; Commit



What is true for a partial sandbox that is not true for a full sandbox? Choose 2 answers:


A.

More frequent refreshes.


B.

Only Includes necessary metadata.


C.

Use of change sets.


D.

Limited to 5 GB of data.





A.
  

More frequent refreshes.



D.
  

Limited to 5 GB of data.



What is the result of the following code block ?
Integer x = 1;Integer Y = 0;While(x < 10){Y++;}


A.

An error occurs


B.

Y = 9


C.

Y = 10


D.

X = 0





A.
  

An error occurs




Page 8 out of 39 Pages
Previous