Free CRT-450 Exam Dumps

Question 21

A developer working on a time management application wants to make total hours for each timecard available to application users. A timecard entry has a Master-Detail relationship to a timecard.
Which approach should the developer use to accomplish this declaratively?

Correct Answer:B

Question 22

What is the value of x after the code segment executes?
String x = 'A';Integer i = 10;if ( i < 15 ) {i = 15;x = 'B';} else if ( i < 20 ) {x = 'C';} else {x = 'D'; }

Correct Answer:C

Question 23

What is a capability of the Developer Console?

Correct Answer:A

Question 24

Which three options allow a developer to use custom styling in a Visualforce page? (Choose three.)

Correct Answer:ABE

Question 25

Which code block returns the ListView of an Account object using the following debug statement? system.debug(controller.getListViewOptions() );

Correct Answer:A