[Dec-2021] CRT-450 Pre-Exam Practice Tests | Exam Questions and Answers for Salesforce Developers Study Guide
Salesforce Certified Platform Developer I Certification Sample Questions
Benefits of having SALESFORCE CRT-450 Certifications
As we know that SALESFORCE CRT-450 certification is mainly for the developer, it will not only help you learn some new skills, it can position you for a higher paying job or help you transform your current role into a Salesforce Platform Developer. Get prepared to take this exam and become one of the very first SALESFORCE Certified Platform Developer in the world using our relevance quality of SALESFORCE CRT-450 Exam study material and so we bring best-in-industry SALESFORCE CRT-450 Exam online course and practice tests for you to help in your exam preparation.
NEW QUESTION 166
What is true of a partial sandbox that is not true of a full sandbox? Choose 2 answers
- A. Use of change sets
- B. More frequent refreshes
- C. Limited to 5 GB of data
- D. Only includes necessary meta data
Answer: B,C
NEW QUESTION 167
A developer must create an Apex class, ContactController, that a Lightning component can use to search for Contact records. Users of the Lightning component should only be able to search for Contact records to which they have access.
Which two will restrict the records correctly? (Choose two.)
- A. public class ContactController
- B. public without sharing class ContactController
- C. public with sharing class ContactController
- D. public inherited sharing class ContactController
Answer: C,D
NEW QUESTION 168
Which two conditions cause workflow rules to fire? Choose 2 answers
- A. An Apex Batch process that changes field values
- B. Updating records using the bulk API
- C. Changing the territory assignments of accounts and opportunities
- D. Converting leads to person accounts
Answer: A,B
NEW QUESTION 169
What is the result of the debug statements in testMethod3 when you create test data using testSetup in below code?
- A. Account0.Phone=888-1515, Account1.Phone=999-1515
- B. Account0.Phone=333-8781, Account1.Phone=333-8780
- C. Account0.Phone=333-8780, Account1.Phone=333-8781
- D. Account0.Phone=888-1515, Account1.Phone=999-2525
Answer: C
NEW QUESTION 170
What declarative method helps ensure quality data? Choose 3 answers
- A. Validation rules
- B. Workflow alerts
- C. Exception handling
- D. Lookup filters
- E. Page layouts
Answer: A,D,E
NEW QUESTION 171
A developer wrote Apex code that calls out to an external system. How should a developer write the test to provide test coverage?
- A. Write a class that extends HTTPCalloutMock.
- B. Write a class that implements the WebserviceMock interface.
- C. Write a class that extends WebserviceMock
- D. Write a class that implements the HTTPCalloutMock interface.
Answer: D
NEW QUESTION 172
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? (Choose three.)
- A. standardController
- B. extensions
- C. readOnly
- D. action
- E. renderAs
Answer: A,D,E
NEW QUESTION 173
Which statement results in an Apex compiler error?
- A. Date d1 = Date.Today(), d2 = Date.ValueOf('2018-01-01');
- B. Integer a=5, b=6, c, d = 7;
- C. Map<Id,Leas> lmap = new Map<Id,Lead>([Select ID from Lead Limit 8]);
- D. List<string> s = List<string>{'a','b','c');
Answer: D
NEW QUESTION 174
A developer has a unit test that is failing. To identify the issue, the developer copies the code inside the test method and executes it via the Execute Anonymous Apex Tool. The code then executes without failing. Why did the unit test failed, but not the Execute Anonymous?
- A. The test method calls an @future method.
- B. The test method use a try/catch block
- C. The test method relies on existing data in the database
- D. The test method has a syntax error in the code.
Answer: C
NEW QUESTION 175
A Lightning component has a wired property, searchResults, that stores a list of Opportunities.
Which definition of the Apex method, to which the searchResultsproperty is wired, should be used?
- A.

- B.

- C.

- D.

Answer: D
NEW QUESTION 176
What is a capability of the Force.com IDE? Choose 2 answers
- A. Download debug logs.
- B. Run Apex tests.
- C. Edit metadata components.
- D. Roll back deployments.
Answer: B,C
NEW QUESTION 177
A developer wants to invoke an outbound message when a record meets a specific criteria.
Which three features satisfy this use case? (Choose three.)
- A. Approval Process has the capability to check the record criteria and send an outbound message without Apex Code.
- B. Process builder can be used to check the record criteria and send an outbound message without Apex Code.
- C. Visual Workflow can be used to check the record criteria and send an outbound message without Apex Code.
- D. Process builder can be used to check the record criteria and send an outbound message with Apex Code.
- E. Workflows can be used to check the record criteria and send an outbound message.
Answer: A,C,E
Explanation:
Explanation/Reference:
NEW QUESTION 178
What is a capability of the Developer Console?
- A. Execute Anonymous Apex code, Create/Edit code, Deploy code changes.
- B. Execute Anonymous Apex code, Run REST API, deploy code changes.
- C. Execute Anonymous Apex code, Run REST API, create/Edit code.
- D. Execute Anonymous Apex code, Create/Edit code, view Debug Logs.
Answer: D
NEW QUESTION 179
A developer needs to test an Invoicing system integration. After reviewing the number of transactions required for the test, the developer estimates that the test data will total about 2 GB of data storage. Production data is not required for the integration testing.
Which two environments meet the requirements for testing? (Choose two.)
- A. Developer Pro Sandbox
- B. Developer Sandbox
- C. Partial Sandbox
- D. Full Sandbox
- E. Developer Edition
Answer: C,D
NEW QUESTION 180
A Developer wants to get access to the standard price book in the org while writing a test class that covers an OpportunityLineItem trigger.
Which method allows access to the price book?
- A. Use Test.loadData()and a Static Resource to load a standard price book.
- B. Use @TestVisibleto allow the test method to see the standard price book.
- C. Use @IsTest(SeeAllData=true)and delete the existing standard price book.
- D. Use Test.getStandardPricebookId()to get the standard price book ID.
Answer: D
Explanation:
Explanation/Reference:
NEW QUESTION 181
A developer needs to confirm that a Contact trigger works correctly without changing the organization's data.
What should the developer do to test the Contact trigger?
- A. Use the Open Execute Anonymous feature on the Developer Console to run an 'Insert Contact' DML statement.
- B. Use the Test menu on the Developer Console to run all test classes for the Contact trigger.
- C. Use the New button on the Salesforce Contacts Tab to create a new Contact record.
- D. Use Deploy from the VSCode IDE to deploy an 'Insert Contact' Apex class.
Answer: B
NEW QUESTION 182
Where can debug log filter settings be set?Choose 2 answers
- A. The Show More link on the debug log's record.
- B. The Filters link by the monitored user's name within the web UI.
- C. On the monitored user's name.
- D. The Log Filters tab on a class or trigger detail page.
Answer: B,D
NEW QUESTION 183
Which code block returns the ListView of an Account object using the following debug statement? system.debug(controller.getListViewOptions() );
- A. ApexPages.StandardSetController controller = new ApexPages.StandardSetController( Database.getQueryLocator( 'SELECT Id FROM Account LIMIT 1'));
- B. ApexPages.StandardController controller = new ApexPages.StandardController( [SELECT Id FROM Account LIMIT 1]);
- C. ApexPages.StandardController controller = new ApexPages.StandardController( Database.getQueryLocator( 'SELECT Id FROM Account LIMIT 1'));
- D. ApexPages.StandardController controller = new ApexPages.StandardController( [SELECT Id FROM Account LIMIT 1]);
Answer: A
NEW QUESTION 184
A developer has a block of code that omits any statements that indicate whether the code block should execute with or without sharing. What will automatically obey the organization-wide defaults and sharing settings for the user who executes the code in the Salesforce organization?
- A. Apex Triggers
- B. Apex Controllers
- C. HTTP Callouts
- D. Anonymous Blocks
Answer: D
NEW QUESTION 185
A candidate may apply to multiple jobs at the company Universal Containers by submtting a single application per job posting. Once an application is submitted for a job posting, that application cannot be modified to be resubmitted to a different job posting.What can the administrator do to associate an application with each job posting in the schema for the organization?
- A. Create a lookup relationship in the Applications custom object to the Job Postings custom object
- B. Create a master-detail relationship in the Job Postings custom object to the Applications custom object.
- C. Create a lookup relationship on both objects to a junction object called Job Posting Applications.
- D. Create a master-detail relationship in the Application custom object to the Job Postings custom object.
Answer: B
NEW QUESTION 186
......
Salesforce CRT-450 Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
| Topic 5 |
|
| Topic 6 |
|
| Topic 7 |
|
| Topic 8 |
|
Salesforce Exam Practice Test To Gain Brilliante Result: https://www.pass4surequiz.com/CRT-450-exam-quiz.html
Tested Material Used To CRT-450: https://drive.google.com/open?id=1CeIuFA-SiqAVJXUuwvkv2Z86zYsCKnIP