SALESFORCE DEV-401 Certification Evaluation 1

Description

Salesforce DEV 401 Quizzes Dumps preparing certified
Rick Martin
Quiz by Rick Martin, updated more than 1 year ago More Less
Hawerth Castro
Created by Hawerth Castro about 6 years ago
Rick Martin
Copied by Rick Martin almost 4 years ago
2
0

Resource summary

Question 1

Question
A developer writes a before insert trigger. How can the developer access the incoming records in the trigger body?
Answer
  • By accessing the Trigger.new context variable.
  • By accessing the Trigger.newRecords context Variable.
  • By accessing the Trigger.newMap context variable.
  • By accessing the Trigger.newList context variable.

Question 2

Question
In an organization that has enabled multiple currencies, a developer needs to aggregate the sum of the Estimated_value__c currency field from the campaignmember object a roll-up summary field called total_estimated_value__c on campaign. How is the currency of the total_Estimated_value__c roll-up summary field determined?
Answer
  • The values in campaignmember.estimated_value__c are converted into the currency of the campaign record, and the sum is displayed using the currency on the campaign record.
  • The values in campaignMember.Estimated_value__c are converted into the currency on the majority of the campaignmember records and the sum is displayed using that currency.
  • The values in campaignMember.Estimated_value__c are summed up and the resulting Total_Estimated_value__c field is diaplyed as a numeric field on the campaign record.
  • The values in campaignMember.Estimated_value__c are converted into the currency of the currentuser, and the sum is displayed using the currency on the campaign record.

Question 3

Question
When creating unit tests in apex, which statement is accurate?
Answer
  • Unit tests with multiple methods result in all methods failing every time one method fails.
  • Increased test coverage requires large test classes with many lines of code in one method.
  • Triggers do not require any unit tests in order to deploy them from sandbox to production.
  • System assert statement that do not increase code coverage contribute important feedback in unit tests.

Question 4

Question
An sObject named Application_c has a lookup relationship to another sObject named Position_c. Both Application_c and Position_c have a picklist field named Status_c. When the Status_c field on Position_c is updated, the Status_c field on Application_c needs to be populated automatically with the same value, and execute a workflow rule on Application_c. How can a developer accomplish this?
Answer
  • By changing Application__c.Status__c into a roll-up summary field.
  • By changing Application__c.Status__c into a formula field.
  • By using an apex trigger with a DML operation.
  • By configuring a cross-object field update with a workflow.

Question 5

Question
A developer has the following trigger that fires after insert and creates a child case whenever a new case is created. List<case> childcases = new List<case>(); for(case parent : trigger.new) { case child = new case(parentId = parent.Id, subject = parent.subject); childcases.add(child); } insert childcases; What happens after the code block executes?
Answer
  • Multiple child cases are created for each parent in trigger.new
  • Trigger enters infinite loop and eventually fails
  • case is created for each parent case in trigger.new
  • The trigger fails if subject field on parent is blank

Question 6

Question
How can a developer avoid exceeding governor limits when using an apex trigger? Choose 2.
Answer
  • By using a helper class that can be invoked from multiple triggers.
  • By using the database class to handle DML transactions.
  • By using maps to hold data from query results.
  • By performing DML transactions on lists of sobjects.

Question 7

Question
Why would a developer use Test.starttest() and test.stoptest()?
Answer
  • To avoid Apex code coverage requirements for the code between these lines.
  • To start and stop anonymous block execution when executing anonymous Apex code.
  • To indicate test code so that it does not impact apex line count governor limits.
  • To create an additional set of governor limits during the execution of a single test class.

Question 8

Question
In which order does salesforce execute events upon saving a record?
Answer
  • Before Triggers; Validation Rules; After Triggers; Assignment Rules; Workflow Rules; Commit
  • Validation Rules; Before Triggers; After Triggers; Workflow Rules; Assignment Rules; Commit
  • Before Triggers; Validation Rules; After Triggers; Workflow Rules; Assignment Rules; Commit
  • Validation Rules; Before Triggers; After Triggers; Assignment Rules; Workflow Rules; Commit

Question 9

Question
When loading data into an organization, what can a developer do to match records to update existing records? Choose 2
Answer
  • Match an external id text field to a column in the imported file.
  • Match the id field to a column in the imported file.
  • Match the name field to a column in the imported file.
  • Match an auto-generated number field to a column in the imported file.

Question 10

Question
How can a developer refer to, or instantiate, a pagereference in apex? Choose 2
Answer
  • By using a pagereference with a partial or full URL.
  • By using the page object and a Visualforce page name.
  • By using the apexPage.page() method with a visualforce page name.
  • By using the PageReference.page() method with a partial or full URL.

Question 11

Question
What is the minimum log level needed to see user-generated debug statements?
Answer
  • DEBUG
  • FINE
  • INFO
  • WARN

Question 12

Question
In the code below what type does Boolean inherit from? Boolean b =true;
Answer
  • Enum
  • Object
  • String
  • Class

Question 13

Question
On a Visualforce page with a custom controller, how should a developer retrieve a record by using an ID parameter that is passed on the URL?
Answer
  • Use the constructor method for the controller.
  • Use the $Action.View method in the Visualforce page.
  • Create a new PageReference object with the Id.
  • Use the <apex:detail> tag in the Visualforce page.

Question 14

Question
A developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?
Answer
  • After committing to database.
  • Before committing to database.
  • Before Trigger execution.
  • After Trigger Execution.

Question 15

Question
The Review__c object has a lookup relationship up to the Job_Application__c object. The Job_Application__c object has a master-detail relationship up to the Position__c object. The relationship field names are based on the auto-populated defaults. What is the recommended way to display field data from the related Review__c records on a visualforce page for a single Position__c record?
Answer
  • Utilize the standard controller for Position__c and cross-object formula fields on the Job_Application__c object to display Review__c data.
  • Utilize the standard controller for Position__c and a Controller extension to query for Review__c data.
  • Utilize the standard controller for Position__c and expression syntax in the page to display related Review__c data through the Job_application__c object.
  • Utilize the standard controller for Position__c and cross-object Formula fields on the Review__c object to display Review_C data.

Question 16

Question
Which standard field needs to be populated when a developer inserts new contact records?
Answer
  • AccountID
  • Name
  • LastName
  • FirstName

Question 17

Question
What is the result when a Visualforce page calls an Apex controller, which calls another apex class. Which then results in hitting a governor limit?
Answer
  • Any changes up to the error are saved.
  • Any changes up to the error are rolled back.
  • All changes before a savepoint are saved.
  • All changes are saved in the first apex class.

Question 18

Question
When the number of records in a recordset is unknown, which control statement should a developer use to implement set of code that executes for every record in the recordset, without performimg a.size()orlength() method call?
Answer
  • For(init_stmt; exit_condition;increment_stmt){-----}
  • Do{---}while(condition)
  • For(variable :list_or_set){----}
  • while(condition){---}

Question 19

Question
What is a capability of cross-object formula fields? Choose 3
Answer
  • Formula fields can reference fields from master-detail or lookup parent relationships.
  • Formula fields can expose data the user does not have access to in a record.
  • Formula fields can be used in three roll-up summaries per object.
  • Formula fields can reference fields in a collection of records from a child relationship.
  • Formula fields can reference fields from objects that are up to 10 relationships away

Question 20

Question
A developer wants to display all of the available record types for a Case object. The developer also wants to display the picklist values for the Case.Status field. The Case object and the Case.Status field are on a custom visualforce page. Which action can the developer perform to get the record types and picklist values in the controller? Choose 2
Answer
  • Use schema.picklistEntry returned by case.Status.getDescribe().getPicklistValues().
  • Use schema.RecordTypeInfo returned by case.SobjectType.getDescribe().getRecordTypeInfos().
  • Use SOQL to query case records in the org to get all the RecordType values available for case.
  • Use SOQL to query case records in the org to get all values for the Status picklist field.

Question 21

Question
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? Choose 2
Answer
  • Apex Triggers
  • Http Callouts
  • Apex controllers
  • Anonymous blocks

Question 22

Question
A developer wants to create a custom object to track customer invoices. How should invoices and accounts be related to ensure that all invoices are visible to everyone with access to an Account?
Answer
  • The Account should have a lookup relationship to the invoice.
  • The Invoice should have a Master-detail relationship to the Account.
  • The Account should have a Master-detail relationship to the Invoice.
  • The Invoice should have a lookup relationship to the account.

Question 23

Question
Which requirement needs to be implemented by using standard workflow instead of process? Choose 2
Answer
  • Create activities at multiple intervals.
  • Send an outbound message without apex code.
  • Copy an account address to its contacts.
  • Submit a contract for approval.

Question 24

Question
A developer creates a workflow rule declaratively that updates a field on an object. An apex update trigger exists for the object What happens when a user updates a record?
Answer
  • No changes are made to the data.
  • Both the apex trigger and workflow rule are fired only once.
  • The workflow rule is fired more than once.
  • The apex trigger is fired more than once.

Question 25

Question
A developer uses a before insert trigger on the lead object to fetch the Territory__C object, Where the Territory__c.postalcode__c matches the lead.postalcode. The code fail when the developer uses the apex data loader to insert 10000 lead records. The developer has the following code block; 01 for(lead L: trigger.new){ 02 if(L.postalcode !=null){ 03 List<Territory__c> terrList=[select id from Territory__c where posatalcode__c : 04 if(terrList.size() > 05 {L.territory__c = terrList[0].id; 06 } 07 } 08 } which line of code is causing the code block to fail?
Answer
  • 03: A soql query is located inside of the for loop code.
  • 01: Trigger.new is not valid in a before insert trigger.
  • 02: A nullpointer exception is thrown if postalcode is null
  • 05: The lead in a before insert trigger cannot be updated.

Question 26

Question
What is a characteristic of the lightning component framework? Choose 2
Answer
  • It has an event-driven architecture.
  • It works with existing Visualforce pages.
  • It includes responsive components.
  • It uses XML as its data format.

Question 27

Question
What is an accurate statement about with sharing keyword? Choose2
Answer
  • Inner classes do not inherit the sharing settings from the container class.
  • Both inner and outer classes can be declared as with sharing.
  • Either inner or outer classes can be declared as with sharing, but not both.
  • Inner classes inherit the sharing settings from the container class.

Question 28

Question
When would a developer use a custom controller instead of a controller extension? Choose 2
Answer
  • When a Visualforce page needs to replace the functionality of a standard controller.
  • When a Visualforce page does not reference a single primary object.
  • When a Visualforce page should not enforce permissions or field-level security.
  • When a Visualforce page needs to add new actions to a standard controller.

Question 29

Question
What is a correct pattern to follow when programming in apex on a multi-tenant platform?
Answer
  • Apex code is created in a separate environment from schema to reduce deployment errors.
  • DML is performed on one record at a time to avoid possible data concurrency issues.
  • Queries select the fewest fields and records possible to avoid exceeding governor limits.
  • Apex classes use the "with sharing" keyword to prevent access from other server tenants.

Question 30

Question
A company that uses a custom object to track candidates would like to send candidate information automatically to a third-party human resources system when a candidate is hired. What can a developer do to accomplish this task?
Answer
  • Create an escalation rule to the hiring manager.
  • Create an auto response rule to the candidate.
  • Create a process builder with an outbound message action.
  • Create a workflow rule with an outbound message action.

Question 31

Question
A Developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?
Answer
  • Before Trigger execution.
  • After Committing to database.
  • Before Committing to Database.
  • After Trigger Execution.

Question 32

Question
A custom exception named "RecordNotFoundException" is defined by the following code block; public class RecordNotFoundException extends Exception{} Which statement can a developer use to throw the custom exception? Choose 2
Answer
  • Throw new RecordNotFoundException("Problem occurred");
  • Throw new RecordNotFoundException();
  • Throw RecordNotFoundException("Problem occurred");
  • Throw RecordNotFoundException();

Question 33

Question
Which type of code represents the controller in MVC architecture on the Force.com Platform? Choose 2
Answer
  • JavaScript that is used to make a menu item display itself.
  • StandardContoller system methods that are referenced by visualforce.
  • Custom apex and javascript code that is used to manipulate data.
  • A static resource that contains CSS and images.

Question 34

Question
Which component is available to deploy using metadata API? Choose 2
Answer
  • Case Layout
  • Account Layout
  • Case Feed Layout
  • Console Layout

Question 35

Question
What is a valid source and destination pair that can send or Receive change sets? Choose2
Answer
  • Sandbox to production.
  • Developer edition to sandbox.
  • Developer edition to Production.
  • Sandbox to sandbox.

Question 36

Question
A developer needs to automatically populate the ReportsTo field in a contact record based on the values of the related Account and Department fields in the contact record. What type of trigger would the developer create? Choose 2
Answer
  • before update.
  • after insert.
  • before insert.
  • after update.

Question 37

Question
A developer needs to create records for the object Property__c. The developer creates the following code block: 01 List propertiesToCreate = helperclass.CreateProperties(); 02 try{ 03 04 } catch (Exception exp){ //Exception hadling } Which line of code would the developer insert at line 03 to ensure that at least some records are created, even if a few records have errors and fail to be created?
Answer
  • Database.insert(propertiesToCreate,System.ALLOW_PARTIAL);
  • insert propertiesToCreate;
  • Database.insert(propertiesToCreate, false);
  • Database.insert(propertiesToCreate);

Question 38

Question
A candidate may apply to multiple jobs at the company universal containers by submiting 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?
Answer
  • Create a lookup relationship on both objects to a junction object called job posting applications object.
  • Create a master-detail relationship in the job postings custom object to the applications custom object.
  • Create a master- detail relationship in the application custom object to the job postings custom object.
  • Create a lookup relationship in the applications custom object to the job postings custom object.

Question 39

Question
A developer creates a new visualforce page and apex extension, and writes test classes that exercise 95% coverage of the new apex extension. changeset deployment to production fails with the test coverage warning; "average test coverage across all apex classes and triggers is 74%, at least 75% test coverage is required." What can the developer do to successfully deploy the new visualforce page and extension?
Answer
  • Create test classes to exercise the visualforce page markup.
  • Select “Disable parallel apex testing" to run all the tests.
  • Add test methods to existing test classes from previous deployments.
  • Select "Fast Deployment" to bypass running all the tests.

Question 40

Question
public class customController { public string cString { get; set;} public string getStringMethod1(){ return cString; } public string getStringMethod2(){ if(cString == null) cString = 'Method2'; return cString; } } <apex:page controller = "myController"> {!cString},{!StringMethod1}, {!StringMethod2}, {!cString} </apex:page> What does the user see when accessing the custom page?
Answer
  • getMyString,,,
  • ,,Method2,
  • , ,Method2,getMyString
  • getMyString, , Method2,getMyString

Question 41

Question
What should a developer working in a sandbox use to exercise a new test class before the developer deploys that test class to production? Choose 2
Answer
  • The Rest API and ApexTestRun method.
  • The Apex Test Execution page in salesforce Setup.
  • The Test menu in the developer console.
  • The Run Tests page in salesforce Setup.

Question 42

Question
A developer has a single custom controller class that works with a visualforce wizard to support creating and editing multiple SObjects. The wizard accepts data from user inputs across multiple visualforce pages and from a parameter on the initial URL. Which statement is unnecessary inside the unit test for the custom controller?
Answer
  • Public Extendedcontroller(apexPages.StandardController cntrl){}
  • Apex.Pages.CurrentPage().getParameters().put('input', 'TestValue');
  • Test.setCurrentpage(pageRef);
  • String nextpage =controller.save().getURL();

Question 43

Question
A Developer in a salesforce org with 100 Accounts executes the following code using the Developer console: Account myAccount = new Account(Name = 'MyAccount'); Insert myAccount; For (Integer x = 0; x < 250; x++) Account newAccount = new Account (Name='MyAccount' + x); try { Insert newAccount; } catch (Exception ex) { System.debug (ex) ; } insert new Account (Name='myAccount'); How many accounts are in the org after this code is run?
Answer
  • 101
  • 100
  • 102
  • 252

Question 44

Question
A developer has the following code block: public class PaymentTax { public static decimal SalesTax = 0.0875; } trigger OpportunityLineItemTrigger on OpportunityLineItem (before insert, before update) { PaymentTax PayTax = new PaymentTax(); decimal ProductTax = ProductCost * XXXXXXXXXXX; } To calculate the productTax, which code segment would a developer insert at the XXXXXXXXXXX to make the value the class variable SalesTax accessible within the trigger?
Answer
  • SalesTax.
  • PayTax.SalesTax.
  • PaymentTax.SalesTax.
  • OpportunityLineItemTrigger.SalesTax.

Question 45

Question
What is true of a partial sandbox that is not true of a full sandbox? Choose2
Answer
  • More frequent refreshes.
  • Only includes necessary metadata.
  • Use of change sets.
  • Limited to 5 GB of data.

Question 46

Question
Which data structure is returned to a developer when performing a sosl search?
Answer
  • A list of lists of sobjects.
  • A map of sObject types to a list of sObjects.
  • A map of sObject types to a lists of sObjects.
  • A list of SObjects.

Question 47

Question
What is a valid apex statement?
Answer
  • Map conMap =[SELECT Name FROM Contact];
  • Account[] acctList = new List<Account>{new Account()};
  • Integer w, x, y =123, z='abc';
  • private static constant Double rate =7.75;

Question 48

Question
Which code segment can be used to control when the dowork() method is called?
Answer
  • for(triggerIsRunning t : trigger.new){ dowork(); }
  • if(trigger.IsRunning){ dowork(); }
  • for(trigger.IsInsert t : trigger.new){ dowork(); }
  • if(trigger.IsInsert){ dowork(); }

Question 49

Question
What is the preferred way to reference web content such as images, style sheets, JavaScript, other libraries that is used in Visualforce pages?
Answer
  • By accessing the content from chatter files.
  • By uploading the content in the documents tab.
  • By accessing the content from a third-party CDN.
  • By uploading the content as a Static Resource.

Question 50

Question
To which primitive data type in apex is a currency field automatically assigned?
Answer
  • Integer
  • Decimal
  • Double
  • Currency

Question 51

Question
A company has a custom object named warehouse. Each warehouse record has a distinct record owner, and is related to a parent account in salesforce. What kind of relationship would a developer use to relate the account to the warehouse?
Answer
  • One-to-Many
  • Lookup
  • Master-Detail
  • Parent-Child

Question 52

Question
A Developer is creating an application to track engines and their parts. An individual part can be used in different types of engines. What data model should be used to track the data and to prevent orphan records?
Answer
  • Create a junction object to relate many engines to many parts through a master-detail relationship.
  • Create a master-detail relationship to represent the one-to many model of engines to parts.
  • Create a lookup relationship to represent how each part relates to the parent engine object.
  • Create a junction object to relate many engines to many parts through a lookup relationship

Question 53

Question
What is a valid statement about apex classes and interfaces? Choose 2
Answer
  • The default modifier for a class is private.
  • Exception classes must end with the word exception.
  • A class can have multiple levels of inner classes.
  • The default modifier for an interface is private.

Question 54

Question
Which resource can be included in a lightning component bundle? Choose 2
Answer
  • Apex Class
  • Adobe Flash
  • Helper
  • Documentation

Question 55

Question
What must the controller for a visualforce page utilize to override the standard opportunity?
Answer
  • The standardsetcontroller to support related lists for pagination.
  • The opportunity standard controller for pre-built functionality.
  • A callback constructor to reference the standard controller.
  • A constructor that initializes a private opportunity variable.

Question 56

Question
An org has different apex class that provide account related functionality. After a new validation rule is added to the account object, many of the test methods fail. What can be done to resolve the failures and reduce the number of code changes needed for future validation rules? Choose 2
Answer
  • Create a method that creates valid account records, and call this method from within test methods.
  • Create a method that loads valid account records from a static Resource, and call this method within test method
  • Create a method that performs a callout for a valid account record, and call this method from within test method
  • Create a method that queries for valid account records, and call this method from within test methods.

Question 57

Question
What would a developer do to update a picklist field on related opportunity records when a modification to the associated account record is detected?
Answer
  • Create a process with process builder.
  • Create a workflow rule with a field update.
  • Create a lightning component.
  • Create a Visualforce page.

Question 58

Question
What is a capability of the force.com IDE? Choose 2
Answer
  • Roll back deployments.
  • Run apex tests.
  • Download debug logs.
  • Edit metadata components.

Question 59

Question
A developer needs to provide a visualforce page that lets users enter product-specific details how can this be accomplished? Choose 2
Answer
  • Download a Managed package from the AppExchange that provides a custom visualforce page
  • Create a new visualforce page and an apex controller to provide product data entry.
  • Copy the standard page and then make a new visualforce page for product data entry.
  • Download an unmanaged package from the AppExchange that provides a custom visualforce
Show full summary Hide full summary

Similar

SALESFORCE DEV-401 Certification Evaluation 2
Hawerth Castro
SALESFORCE DEV-401 Certification Evaluation 2
Rick Martin
CET_TARDE - MTA HTML5 Application Development Fundamentals 2
Hawerth Castro
SALESFORCE ADM-201 Certification Exam 1
Hawerth Castro
CET_TARDE - MTA Software Development Fundamentals 4
Hawerth Castro
CET_TARDE - MTA Mobility and Devices Fundamentals 1
Hawerth Castro
CET_TARDE - MTA Windows Server Administration Fundamentals 0
Hawerth Castro
CET_TARDE - MTA Windows Server Administration Fundamentals 1
Hawerth Castro
CET_TARDE - MTA Windows Server Administration Fundamentals 3
Hawerth Castro
CET_TARDE - MTA Windows Server Administration Fundamentals 4
Hawerth Castro
CET_TARDE - MTA HTML5 Application Development Fundamentals 1
Hawerth Castro