Salesforce tvb-450 online test

Trailhead Virtual Bootcamp for Platform Developer I Exam

What students need to know about the tvb-450 exam

  • Total 298 Questions & Answers

Question 1

Which three steps allow a custom SVG to be included in a Lightning web component? Choose 3
answers

  • A. Upload the SVG as a static resource.
  • B. Import the static resource and provide a getter for it in JavaScript.
  • C. Reference the getter in the HTML template.
  • D. Reference the import in the HTML template.
  • E. Import the SVG as a content asset file.
Answer:

A, B, C

Discussions

Question 2

Which process automation should be used to send an outbound message without using Apex code?

  • A. Workflow Rule
  • B. Process Builder
  • C. Approval Process
  • D. Flow Builder
Answer:

A

Discussions

Question 3

A developer is tasked to perform a security review of the ContactSearch Apex class that exists in the
system. Whithin the class, the developer identifies the following method as a security threat:
List<Contact> performSearch(String lastName){ return Database.query('Select Id, FirstName,
LastName FROM Contact WHERE LastName Like %'+lastName+'%); } What are two ways the
developer can update the method to prevent a SOQL injection attack? Choose 2 answers

  • A. Use variable binding and replace the dynamic query with a static SOQL.
  • B. Use the escapeSingleQuote method to sanitize the parameter before its use.
  • C. Use a regular expression on the parameter to remove special characters.
  • D. Use the @Readonly annotation and the with sharing keyword on the class.
Answer:

AB

Discussions

Question 4

A developer uses a loop to check each Contact in a list. When a Contact with the Title of
Boss is found, the Apex method should jump to the first line of code outside of the for
loop.
Which Apex solution will let the developer implement this requirement?

  • A. break;
  • B. Continue
  • C. Next
  • D. Exit
Answer:

A

Discussions

Question 5

The values 'High', 'Medium', and 'Low' are Identified as common values for multiple picklist across
different object. What is an approach a developer can take to streamline maintenance of the picklist
and their values, while also restricting the values to the ones mentioned above?

  • A. Create the Picklist on each object and use a Global Picklist Value Set containing the Values.
  • B. Create the Picklist on each object as a required field and select "Display values alphabeticaly, not in the order entered".
  • C. Create the Picklist on each object and select "Restrict picklist to the values defined in the value set".
  • D. Create the Picklist on each and add a validation rule to ensure data integrity.
Answer:

A

Discussions

Question 6

Which aspect of Apex programming is limited due to multitenancy?

  • A. The number of active Apex classes
  • B. The number of methods in an Apex Class
  • C. The number of records processed in a loop
  • D. The number of records returned from database queries
Answer:

D

Discussions

Question 7

Universal Containers has an order system that uses an Order Number to identify an order for
customers and service agents. Order will be imported into Salesforce.

  • A. Lookup
  • B. Direct Lookup
  • C. Number with External ID
  • D. Indirect Lookup
Answer:

C

Discussions

Question 8

A Visual Flow uses an apex Action to provide additional information about multiple Contacts, stored
in a custom class, contactInfo. Which is the correct definition of the Apex method that gets additional
information?

  • A. @InvocableMethod(label='Additional Info') public List<ContactInfo> getInfo(List<Id> contactIds) { /*implementation*/ }
  • B. @InvocableMethod(label='additional Info') public static ContactInfo getInfo(Id contactId) { /*implementation*/ }
  • C. @invocableMethod(label)='Additional Info') public static List<ContactInfo> getInfo(List<Id> contactIds) { /*Implementation*/ }
  • D. @InvocableMethod(Label='additional Info') public ContactInfo(Id contactId) { /*implementation*/ }
Answer:

C

Discussions

Question 9

Universal Containers wants to back up all of the data and attachments in its Salesforce org once
month. Which approach should a developer use to meet this requirement?

  • A. Use the Data Loader command line.
  • B. Create a Schedulable Apex class.
  • C. Schedule a report.
  • D. Define a Data Export scheduled job.
Answer:

D

Discussions

Question 10

A Visual Flow uses an apex Action to provide additional information about multiple Contacts, stored
in a custom class, contactInfo. Which is the correct definition of the Apex method that gets additional
information?

  • A. @InvocableMethod(label='Additional Info') public List<ContactInfo> getInfo(List<Id> contactIds) { /*implementation*/ }
  • B. @InvocableMethod(label='additional Info') public static ContactInfo getInfo(Id contactId) { /*implementation*/ }
  • C. @invocableMethod(label)='Additional Info') public static List<ContactInfo> getInfo(List<Id> contactIds) { /*Implementation*/ }
  • D. @InvocableMethod(Label='additional Info') public ContactInfo(Id contactId) { /*implementation*/ }
Answer:

C

Discussions
To page 2