weizhen zhao
Quiz by , created more than 1 year ago

dev cert

403
2
0
Shonen
Created by Shonen about 8 years ago
Shonen
Copied by Shonen about 8 years ago
Shonen
Copied by Shonen about 8 years ago
d owen
Copied by d owen about 8 years ago
weizhen zhao
Copied by weizhen zhao about 7 years ago
Close

DEV I Part I

Question 1 of 86

1

Where can debug log filter settings be set? Choose 2 answers

Select one or more of the following:

  • The Log Filters tab on a class or trigger detail page

  • On the monitored user's name

  • The Filters link by the monitored user's name within the Web UI

  • The Show More link on the debug log's record

Explanation

Question 2 of 86

1

A Visualforce page has a standard controller for an object that has a lookup relationship to a parent object. How can a developer display data from the parent record on the page?

Select one of the following:

  • By using a roll-up formula field on the child record to include data from the parent record

  • By using SOQL on the Visualforce page to query for data from the parent record

  • By adding a second standard controller to the page for the parent record

  • By using merge field syntax to retrieve data from the parent record

Explanation

Question 3 of 86

1

A developer has the following code:
try {
List <String> nameList;
Account a;
String s = a.Name;
nameList.add (s);
}
catch (ListException le) {System.debug ('List Exception');}
catch (NullPointerException npe){System.debug('Null Pointer Exception');}
catch (Exception e){System.debug ('Generic Exception');}

Select one of the following:

  • List Exception

  • Null Pointer Exception

  • Generic Exception

  • None

Explanation

Question 4 of 86

1

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';}

Select one of the following:

  • A

  • B

  • C

  • D

Explanation

Question 5 of 86

1

When can a developer use a custom Visualforce page in a Force.com application? Choose 2 answers

Select one or more of the following:

  • To generate a PDF document with application data

  • To modify the page layout settings for a custom object

  • To create components for dashboards and layouts

  • To deploy components between two organizations

Explanation

Question 6 of 86

1

What is an accurate constructor for a custom controller named 'MyController'?

Select one of the following:

  • public MyController (List<SObject> objects) {
    accounts = (List <Account>)objects;
    }

  • public MyController () {
    account = new Account()
    }

  • public MyController (SObject obj) {
    account = (Account) obj
    }

  • public MyController (ApexPages.StandardController stdController) {
    account = (Account) stdController.getRecord();
    }

Explanation

Question 7 of 86

1

A developer needs to create records for the object Property__c. The developer creates the following code block. Which line of code would the developer insert at line 03 to ensure that at least some records are created?
01 List <Property__c> propertiesToCreate = helperClass.createProperties();
02 try {
03
04 } catch (Exception exp) {
05 //Exception handling
06 }

Select one of the following:

  • Insert PropertiesToCreate;

  • Database.insert(propertiesToCreate, System.ALLOW_PARTIAL);

  • Database.insert(propertiesToCreate, false);

Explanation

Question 8 of 86

1

A company wants a recruiting app that models candidates and interviews; displays the total number of interviews for each candidate record; and defines security on interview records that is independent from the security on candidate records. What would a developer do to accomplish this task. Choose 2 answers"

Select one or more of the following:

  • Create a trigger on the Interview object that updates a field on the Candidate object

  • Create a lookup relationship between the Candidate and Interview objects

  • Create a roll-up summary field on the Candidate object that counts Interview records

  • Create a master-detail relationship between the Candidate and Interview objects

Explanation

Question 9 of 86

1

A developer wants to list all of the tasks for each Account on the Account detail page. When a Task is created for a Contact, what does a developer need to do to display the Task on the related Account record?

Select one of the following:

  • Create a workflow rule to relate the Task to the Contact's Account

  • Create an account formula field that displays the the Task information

  • Nothing. The Task cannot be related to an Account and a Contact.

  • Nothing. The Task is automatically displayed on the Account page.

Explanation

Question 10 of 86

1

What is a capability of a StandardSetController? Choose 2 answers

Select one or more of the following:

  • It extends the functionality of a standard or custom controller

  • It allows pages to perform pagination with large record sets

  • It enforces field-level security when reading large record sets

  • It allows pages to perform mass updates of records

Explanation

Question 11 of 86

1

Which code block returns the ListView of an Account object using the following debug statement?

Select one of the following:

  • System.debug (controller.getListViewOptions());""";"ApexPages.StandardSetController controller = new ApexPages.StandardSetController ([SELECT Id FROM Account LIMIT 1]);

  • System.debug (controller.getListViewOptions());""";"ApexPages.StandardController controller = new ApexPages.StandardController ([SELECT Id FROM Account LIMIT 1]);

  • System.debug (controller.getListViewOptions());""";"ApexPages.StandardSetController controller = new ApexPages.StandardSetController (Database.getQueryLocator('select Id from Account Limit 1'));

  • System.debug (controller.getListViewOptions());""";"ApexPages.StandardController controller = new ApexPages.StandardController (Database.getQueryLocator('select Id from Account Limit 1'));

Explanation

Question 12 of 86

1

A developer needs to provide a Visualforce page that lets users enter Product-specific details during a Sales cycle. How can this be accomplished? Choose 2 answers

Select one or more of the following:

  • Download a Managed Package from the AppExchange that provides a custom Visualforce page to modify

  • Download an Unmanaged Package from the AppExchange that provides a custom Visualforce page to modify

  • Copy the standard page and then make a new Visualforce page for Product data entry

  • Create a new Visualforce Page and an Apex controller to provide Product data entry

Explanation

Question 13 of 86

1

A reviewer is required to enter a reason in the comments field only when a candidate is recommended to be hired. Which action can a developer take to enforce this requirement?

Select one of the following:

  • Create a required Visualforce component

  • Create a required comments field

  • Create a validation rule

  • Create a formula field

Explanation

Question 14 of 86

1

Which statement should a developer avoid using inside procedural loops? Choose 2 answers"

Select one or more of the following:

  • System.debug('Amount of CPU time (in ms) used so far: ' + Limits.getCpuTime());

  • if(o.accountid == a.id)

  • update contactList;

  • List<Contact> contacts = [select id, salutation, firstname, email from Contact where accountId = :a.Id];

Explanation

Question 15 of 86

1

Which type of code represents the Controller in the MVC architecture on the Force.com platform? Choose 2 answers"

Select one or more of the following:

  • StandardController system methods that are referenced by Visualforce

  • A static resource that contains CSS and images

  • Custom Apex and JavaScript code that is used to manipulate data

  • JavaScript that is used to make a menu item display itself

Explanation

Question 16 of 86

1

What will automatically obey the organization-wide defaults and sharing settings for the user who executes the code in the Salesforce organization?

Select one of the following:

  • Apex controllers

  • Anonymous Blocks

  • Apex triggers

  • HTTP Callouts

Explanation

Question 17 of 86

1

A developer needs to know if all tests currently pass in a Salesforce environment. Which feature can the developer use? Choose 2 answers

Select one or more of the following:

  • Workbench Metadata Retrieval

  • ANT Migration Tool

  • Salesforce UI Apex Test Execution

  • Developer Console

Explanation

Question 18 of 86

1

What is a valid source and destination pair that can send or receive change sets? Choose 2 answers

Select one or more of the following:

  • Developer edition to sandbox

  • Developer edition to production

  • Sandbox to sandbox

  • Sandbox to production

Explanation

Question 19 of 86

1

Which declarative method helps ensure quality data? Choose 3 answers

Select one or more of the following:

  • Page layouts

  • Workflow alerts

  • Lookup filters

  • Validation rules

  • Exception handling

Explanation

Question 20 of 86

1

How can a developer determine, from the DescribeSObjectResult, if the current user will be able to create records for an object in Apex?

Select one of the following:

  • By using the isCreatable() method

  • By using the hasAccess() method

  • By using the isInsertable() method

  • By using the canCreate() method

Explanation

Question 21 of 86

1

The Sales Management team hires a new intern. The new intern is not allowed to view Opportunities, but needs to see the Most Recent Closed Date of all child Opportunities when viewing an Account record.

Select one of the following:

  • Create a roll-up summary field on the Account object that performs a MAX on the Opportunity Close Date field

  • Create a formula field on the Account object that performs a MAX on the Opportunity Close Date field

  • Create a Workflow Rule on the Opportunity object that updates a field on the parent Account

  • Create a trigger on the Account object that queries the Close Date of the most recent Opportunities

Explanation

Question 22 of 86

1

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 answers""

Select one or more of the following:

  • Use SOQL to query Case records in the org to get all the RecordType values available for Case

  • 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 values for the Status picklist field

Explanation

Question 23 of 86

1

What is a capability of formula fields? Choose 3 answers

Select one or more of the following:

  • Generate a link using the HYPERLINK function to a specific record in a legacy system

  • Determine which of the three different images to display using the IF function

  • Return and display a field value from another object using the VLOOKUP function

  • Display the previous value for a field using the PRIORVALUE function

  • Determine if a datetime field has passed using the NOW function

Explanation

Question 24 of 86

1

Which action can a developer perform in a before update trigger? Choose 2 answers

Select one or more of the following:

  • Change field values using the Trigger.new context variable

  • Display a custom error message in the application interface

  • Update the original object using an update DML operation

  • Delete the original object using a delete DML operation

Explanation

Question 25 of 86

1

Which trigger event allows a developer to update fields in the Trigger.new list without using an additional DML statement? Choose 2 answers.

Select one or more of the following:

  • After insert

  • After update

  • Before update

  • Before insert

Explanation

Question 26 of 86

1

When the value of a field in an account record is updated, which method will update the value of a custom field related opportunities? Choose 2 answers

Select one or more of the following:

  • A Workflow Rule on the Account object

  • An Apex trigger on the Account object

  • A Process Builder on the Account object

  • A cross-object formula field on the Account object

Explanation

Question 27 of 86

1

Which statement about change set deployments is accurate? Choose 3 answers

Select one or more of the following:

  • They can be used to deploy custom settings data

  • They can be used to transfer Contact records

  • They use an all or none deployment model

  • They can be used only between related organizations

  • They require a deployment connection

Explanation

Question 28 of 86

1

Where can custom roll-up summary fields be created using Standard Object relationships? Choose 3 answers"

Select one or more of the following:

  • On Opportunity using Opportunity Product records

  • On Quote using Order records

  • On Campaign using Campaign Member records

  • On Account using Case records

  • On Account using Opportunity records

Explanation

Question 29 of 86

1

Where would a developer build a managed package

Select one of the following:

  • Partial Copy Sandbox

  • Developer Sandbox

  • Unlimited Edition

  • Developer Edition

Explanation

Question 30 of 86

1

Which scenario is invalid for execution by unit tests?

Select one of the following:

  • Executing methods as different users

  • Executing methods for negative test scenarios

  • Loading the standard Pricebook ID using a system method

  • Loading test data in place of user input for Flows  

Explanation

Question 31 of 86

1

A developer creates a custom controller and custom Visualforce page by using the following. What does the user see when accessing the custom page?
Controller
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;
}
}
Page:
<apex:page controller =""myController"">
{!myString} {!StringMethod1} {!StringMethod2} {!myString}
</apex:page>

Select one of the following:

  • getMyString Method2 getMyString

  • Method2

  • Method2, getMyString

Explanation

Question 32 of 86

1

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

Select one of the following:

  • Before Triggers, Validation Rules, After Triggers, Assignment Rules, Workflow, Commit

  • Validation Rules, Before Triggers, After Triggers, Assignment Rules, Workflow, Commit

  • Validation Rules, Before Triggers, After Triggers, Workflow, Assignment Rules, Commit

  • Before Triggers, Validation Rules, After Triggers, Workflow, Assignment Rules, Commit

Explanation

Question 33 of 86

1

In a single record, a user selects multiple values from a multi-select picklist. How are the selected values represented in Apex?

Select one of the following:

  • As a string with each value separated with a semicolon

  • As a string with each value separated with a comma

  • As a List <String> with each element as an element in the list

  • As a Set <String> with each element as an element in the set

Explanation

Question 34 of 86

1

What is a valid way of loading external Javascript files into a Visualforce page? Choose 2 answers

Select one or more of the following:

  • Using a <link> tag

  • Using a <script> tag

  • Using an <apex:includeScript> tag

  • Using an <apex:define> tag

Explanation

Question 35 of 86

1

A developer runs the following anonymous code block. What is the result?:

List <Account> acc = [SELECT Id FROM Account LIMIT 10];
Delete acc;
Database.emptyRecycleBin (acc);
system.debug(Limits.getDMLStatements()+”;”+Limits.getLimitDMLStatements());

Select one of the following:

  • 150; 2

  • 11; 150

  • 2;150

  • 150;11

Explanation

Question 36 of 86

1

What is a benefit of a Lightining Component framework?

Select one of the following:

  • Better integration with Force.com sites

  • Better performance for custom Salesforce1 Mobile apps

  • More pre-built components to replicate the Salesforce look and feel

  • More centralized control via server-side logic

Explanation

Question 37 of 86

1

Which data type or collection of data types can SOQL statements populate or evaluate to? Choose 3 answers"

Select one or more of the following:

  • An integer

  • A string

  • A single SObject

  • A list of SObjects

  • A Boolean

Explanation

Question 38 of 86

1

In the Lightning Component framework, which resource can be used to fire events? Choose 2 answers.

Select one or more of the following:

  • Third-party Javascript code

  • Visualforce controller actions

  • Javascript controller actions

  • Third-party web service code

Explanation

Question 39 of 86

1

What is a capability of the Force.com IDE? Choose 2 answers

Select one or more of the following:

  • Download debug logs

  • Run Apex tests

  • Edit metadata components

  • Roll back deployments

Explanation

Question 40 of 86

1

What is an important consideration when developing in a multi-tenant environment?

Select one of the following:

  • Unique domain names take the place of namespaces for code developed for multiple orgs on multiple instances

  • Polyglot persistence provides support for a global multilingual user base in multiple orgs on multiple instance

  • Governor limits prevent tenants from impacting performance in multiple orgs on the same instance

  • Org-wide data security determines whether other tenants can see data in multiple orgs on the same instance

Explanation

Question 41 of 86

1

A developer creates an Apex class that includes private methods. What can the developer do to ensure that the private methods can be accessed by the test class?"

Select one of the following:

  • Add the SeeAllData attribute to the test class

  • Add the TestVisible attribute to the Apex methods

  • Add the SeeAllData attribute to the test methods

  • Add the TestVisible attribute to the Apex class

Explanation

Question 42 of 86

1

What is the proper process for an Apex unit test?

Select one of the following:

  • Query for test data using SeeAllData=true. Call the method being tested. Verify that the results are correct.

  • Create data for testing. Call the method being tested. Verify that the results are correct.

  • Create data for testing. Execute runAllTests(). Verify that the results are correct.

  • Query for test data using SeeAllData=true. Execute runAllTests(). Verify that the results are correct.

Explanation

Question 43 of 86

1

How can a developer avoid exceeding governor limits when using an Apex trigger? Choose 2 answers

Select one or more of the following:

  • By using the Database class to handle DML transactions

  • By using a helper class that can be invoked from multiple triggers

  • By performing DML transactions on lists of SObjects

  • By using Maps to hold data from query results

Explanation

Question 44 of 86

1

A developer has the following query: [SELECT Id, Firstname, LastName email FROM contact WHERE Lastname = ‘Smith’]. What does the query return if there is no Contact with the last name 'Smith'?

Select one of the following:

  • A Contact with empty values

  • An empty List of Contacts

  • A Contact initialized to null

  • An error that no rows are found

Explanation

Question 45 of 86

1

When loading data into an organization, what can a developer do to match records to update existing fields?

Select one or more of the following:

  • Match an auto-generated Number field to a column in the imported file

  • Match an external Id Text field to a column in the imported file

  • Match the Name field to a column in the imported file

  • Match the Id field to a column in the imported file

Explanation

Question 46 of 86

1

A Hierarchy Custom Setting stores a specific URL for each profile in Salesforce. Which statement can a developer use to retrieve the correct URL for the current Visualforce page?

Select one of the following:

  • {!$Setup.Url_Settings__c.URL__c}

  • {!$Setup.Url_Settings__c.[Profile.Id].URL__c}

  • {!$Setup.Url_Settings__c.[$Profile.Id].URL__c}

  • {!$Setup.Url_Settings__c.Instance[Profile.Id].URL__c}

Explanation

Question 47 of 86

1

A developer needs to create a Visualforce page that will override the standard Account edit button. The page will be used to validate the account's address using a SOQL query. The page will also allow the user to make edits to the address. Where would the developer write the Account address verification logic?

Select one of the following:

  • In a Custom Controller

  • In a Standard Extension

  • In a Standard Controller

  • In a Controller Extension

Explanation

Question 48 of 86

1

What is an accurate statement about variable scope? Choose 3 answers

Select one or more of the following:

  • Sub-blocks cannot reuse a parent block's variable name

  • Parallel blocks can use the same variable name

  • Sub-blocks can reuse a parent block's variable name if its value is null

  • A static variable can restrict the scope to the current block if its value is null

  • A variable can be defined at any point in a block

Explanation

Question 49 of 86

1

Which type of information is provided by the Checkpoints tab in the Developer Console? Choose 2 answers"

Select one or more of the following:

  • Namespace

  • Time

  • Debug Statement

  • Exception

Explanation

Question 50 of 86

1

A developer writes a SOQL query to find child records for a specific parent. How many levels can be returned in a single query?

Select one of the following:

  • 5

  • 1

  • 7

  • 3

Explanation

Question 51 of 86

1

What is a good practice for a developer to follow when writing a trigger? Choose 2 answers

Select one or more of the following:

  • Using synchronous callouts to call external systems

  • Using the Map data structure to hold query results by ID

  • Using @future methods to perform DML operations

  • Using the Set data structure to ensure distinct records

Explanation

Question 52 of 86

1

52. A developer creates an Apex helper class to handle complex trigger logic. How can the helper class warn users when the trigger exceeds DML governor limits?

Select one of the following:

  • By using PageReference.setRedirect() to redirect the user to a custom Visualforce page before the number of DML statements is exceeded

  • By using Limits.getDMLRows() and then displaying an error message before the number of DML statements is exceeded

  • By using ApexMessage.Message() to display an error message after the number of DML statements is exceeded

  • By using Messaging.SendEmail() to continue the transaction and send an alert to the user after the number of DML statements is exceeded

Explanation

Question 53 of 86

1

Which statement about the Lookup Relationship between a Custom Object and a Standard Object is correct?

Select one of the following:

  • The Custom Object will be deleted when the referenced Standard Object is deleted

  • The Lookup Relationship cannot be marked as required on the page layout for the Custom Object

  • The Custom Object inherits security from the referenced Standard Object

  • The Lookup Relationship on the Custom Object can prevent the deletion of the Standard Object

Explanation

Question 54 of 86

1

A developer needs to ensure there is sufficient test coverage for an Apex Method that interacts with Accounts. The developer needs to create test data. What is the preferred way to load this test data into Salesforce?

Select one of the following:

  • By using HttpCalloutMocks

  • By using Documents

  • By using Static Resources

  • By using WebServiceTests

Explanation

Question 55 of 86

1

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

Select one or more of the following:

  • An administrator

  • Any user who approved the record previously

  • A user who is assigned as the current approver

  • Any user with a higher role in the hierarchy

Explanation

Question 56 of 86

1

On which object can an administrator create a roll-up summary field?

Select one of the following:

  • Any object that is on the detail side of a master-detail relationship

  • Any object that is on the child side of a lookup relationship

  • Any object that is on the parent side of a lookup relationship

  • Any object that is on the master side of a master-detail relationship

Explanation

Question 57 of 86

1

Which statement would a developer use when creating test data for products and pricebooks?

Select one of the following:

  • Pricebook pb = new Pricebook ();

  • IsTest(SeeAllData = false)

  • List objList = Test.loadData(Account.sObjectType 'myResource');

  • Id pricebookId = Test.getStandardPricebookId();

Explanation

Question 58 of 86

1

Which use case requires a partial copy or full sandbox? Choose 3 answers.

Select one or more of the following:

  • Scalability Testing

  • Development Testing

  • Quality Assurance Testing

  • Batch Data Testing

  • Integration Testing

Explanation

Question 59 of 86

1

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

Select one of the following:

  • Apex

  • Visualforce

  • HTML

  • JavaScript

Explanation

Question 60 of 86

1

A developer creates a method in an Apex class and needs to ensure that errors are handled properly. What would the developer use? Choose 3 answers.

Select one or more of the following:

  • ApexPages.addErrorMessage()

  • A custom exception

  • addError()

  • Database.handleException()

  • A try/catch construct

Explanation

Question 61 of 86

1

What is valid in the where clause of a SOQL query? Choose 2 answers.

Select one or more of the following:

  • A geolocation field.

  • An encrypted field.

  • An aggregate function.

  • An alias notation.

Explanation

Question 62 of 86

1

What is the correct way to describe how Model-View-Controller (MVC) architecture is implemented on the Salesforce platform?

Select one of the following:

  • Model: Standard and Custom Objects; View: Visualforce Pages; Controller: s-Controls

  • Model: Schema Builder; View: List Views; Controller: Setup Console

  • Model: Standard and Custom Objects; View: Visualforce Pages; Controller: Apex Code

  • Model: Apex Code; View: List Views; Controller: Setup Console

Explanation

Question 63 of 86

1

A developer executes following code in Console. What will happen?
list<Account> flist = new list<Account>();
for(integer i=1;i<=200 ;i++){
flist.add(new Account(name='Test Acc'+i));
}
insert flist;

list<Account> Llist = new list<Account>();
for(integer i=201;i<=20000 ;i++){
Llist.add(new Account(name='Test Acc'+i));
}
insert Llist ;

Select one of the following:

  • Insert all records

  • Error will occur

  • Insert 200 only

  • Records inserted

Explanation

Question 64 of 86

1

Developer need to verify that the account trigger is working fine without changing Org data. What should the developer do to test the Account trigger?

Select one of the following:

  • Use the test menu on developer console to run all test classes for the account trigger.

  • Use Execute Anonymous feature on developer console

  • Use New button on Account tab to create new record

  • Use force.com IDE

Explanation

Question 65 of 86

1

Which Apex collection is used to ensure all values are unique?

Select one of the following:

  • An Sobject

  • Set

  • List

  • Enum

Explanation

Question 66 of 86

1

What is the benefit of Lightning Component: (Pregunta parecida con dos respuestas para elegir)

Select one of the following:

  • It uses Client - Side Apex controller for logic

  • It uses MVC architecture

  • It uses Event - driven architecture

Explanation

Question 67 of 86

1

How would a developer change the field type of a custom field on account object from a string to an integer?

Select one of the following:

  • Remove all references in the code, make the change in the declarative UI, and restore the references with the new type.

  • Make the change in the developer console, and then the change will automatically be reflected in the apex.

  • Make the change in the declarative UI, and then the change will automatically be reflected in the apex code.

  • Make the change in the declarative UI, then update the field type to an integer field in-the apex code.

Explanation

Question 68 of 86

1

What can a lightning component contain in its resource bundle? Choose two answers.

Select one or more of the following:

  • CSS styles scoped to the component.

  • Custom Client-side rendering behavior.

  • Build scripts for minification.

  • Properties files with global settings.

Explanation

Question 69 of 86

1

Which is true about social accounts?

Select one of the following:

  • You can use social accounts data even when you are not logged into the social account.

  • You need a personal social account in order to see social account data

  • You can use social accounts to import data into salesforce

  • Connection to social account is established thrugh a company wide “named principal”

Explanation

Question 70 of 86

1

You want to use an External Data Object Table from Heroku carrying Product Category information. The data need to be included in Salesforce and searchable. What do you have to do before you can use the connection (choose two):

Select one or more of the following:

  • Press “validate and sync”

  • Choose “include in Salesforce searches” option

  • Choose “include as index field”

  • URL / choose the URL (?)

Explanation

Question 71 of 86

1

71. Person Accounts... (choose two):

Select one or more of the following:

  • Do use space in both account and contacts table

  • Have the same icon as Business accounts

  • Can only be merged with other person accounts

  • Are enabled by default

  • Are enabled via feature license

Explanation

Question 72 of 86

1

Universal containers wants to rollout new product bundles with several pricing options. Pricing options include product-price bundles, account specific pricing and more. Which product satisfies the needs: (choose 1)

Select one of the following:

  • Custom Appexchange-app for product-pricing

  • Workflow on Opportunity/Opportunity Product

  • Formula fields on Opportunity/Opportunity Product

  • Lightning process builder

Explanation

Question 73 of 86

1

Which components can be added to a lightning app on custom Object: (choose 3)

Select one or more of the following:

  • Visualforce

  • Standard Lightning component

  • Custom lightning component

  • Global actions

  • Object specific actions on the custom object

Explanation

Question 74 of 86

1

Universal containers has a custom object “service” which has a lookup relationship to Account. Universal containers wants to enhance Salesforce1 with an action that allows account managers to enter a new service to an Account while looking at the account:

Select one of the following:

  • Enter an object specific action to Account and put it in the Account Layout

  • Enter an object specific action to Service and put it in the Account Layout

  • Enter an object specific action to Service and put it in the Service Layout

  • Enter an object specific action to Account and put it in the Service Layout

Explanation

Question 75 of 86

1

Universal containers has included its orders as an external data object into Salesforce. You want to create a relationship between Accounts and the Orders object (one-to-many relationship) leveraging a key field for account which is on both external object and Account. Which relationship do you create:

Select one of the following:

  • Lookup Relationship

  • Master Detail Relationship

  • Hierarchical Relationship

  • External Lookup Relationship

  • Indirect Lookup Relationship

Explanation

Question 76 of 86

1

Universal containers has a custom object that has a N:M relationship with opportunityLineItem carrying price and amount information. In order to compute total amounts and total prices per Opportunity using Rollup summary fields, what field type will you use

Select one of the following:

  • Junction

  • Master-Detail

  • Lookup

  • Crossobject

Explanation

Question 77 of 86

1

Universal Container want to store an area code and wants to be able to search for it in searches. Which are possible fields to store the data (choose 2):

Select one or more of the following:

  • Text

  • Phone

  • Email

  • Multi Picklist

Explanation

Question 78 of 86

1

Universal Container want to store an area code and wants to be able to search for it in applications (apex). Which are possible fields to store the data (choose 2):

Select one or more of the following:

  • Text

  • Phone

  • Email

  • Multi Picklist

  • Number

Explanation

Question 79 of 86

1

Universal Container installs an unmanaged package. Which of the following are true: (choose 2):

Select one or more of the following:

  • Components of unmanaged packages can be edited

  • Unmanaged packages can be upgraded

  • Unmanaged packages have a namespace prefix

  • Unmanaged packages don’t have a version number

  • Tests are executed during deployment

Explanation

Question 80 of 86

1

Universal Container is using assignment rules to distribute cases to regional teams. Which of the following are true:

Select one of the following:

  • It is possible to have multiple active assignment rules

  • Cases may be assigned to public groups (if configured)

  • Cases may be assigned to queues (if configured)

  • A workflow field update can be used instead

Explanation

Question 81 of 86

1

Field type conversion. Which of the following are true: (choose 2):

Select one or more of the following:

  • Data can be lost when converting from simple picklist to multi picklist

  • Data can be lost when converting from autonumber to text

  • Data can be lost when converting from number to currency (assuming that field lengths are identical)

  • Information can be lost when converting from text area (rich) to text area (long)

Explanation

Question 82 of 86

1

What happens when a workflow is re-evaluated? Pick 3

Select one or more of the following:

  • Validation

  • Previous Workflows

  • Cross-object sharing rules

  • Other Workflow types

Explanation

Question 83 of 86

1

Universal containers want an org for development which can be refreshed in every 5 days with all the configuration and some data. What org do you choose:

Select one of the following:

  • Full Sandbox

  • Developer Sandbox

  • Developer Pro Sandbox

  • Partial copy sandbox

Explanation

Question 84 of 86

1

Describe the ramifications of field updates and potential for recursion for the following scenario: If a field update for Rule1 triggers Rule2, and a field update for Rule2 triggers Rule1.

Select one of the following:

  • Loop is allowed to run 25 times within one hour. If it does not end on its own the process will be stopped by R&D.

  • The updates create a loop and the org limits for workflow time triggers per hour will likely be violated.

  • The updates create a loop and the org be blocked until the admin resolves the issue

  • When the second trigger is saved an Imminent Loop Error message will be displayed and the workflow rule update will not save.

Explanation

Question 85 of 86

1

What determines whether a user can create a new record using a specific record type?

Select one of the following:

  • Profile

  • Field level security

  • Page layout

  • Sharing

Explanation

Question 86 of 86

1

Which statements are true regarding Roll-Up Summary fields? (select all that apply)

Select one or more of the following:

  • Because roll-up summary fields are not displayed on edit pages, you can use them in validation rules but not as the error location for you validation.

  • Validation errors can display when saving either the detail or master record.

  • Once created, you cannot change the detail object selected or delete any field referenced in your roll-up summary definition.

  • Advanced currency management has no affect on roll-up summary fields.

  • Automatically derived fields, such as current date or current user, are allowed in a roll-up summary field.

Explanation