Salesforce Application Developer-I Part 6

Q 201. 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?
A. Enter an object specific action to Service and put it in the Account Layout
B. Enter an object specific action to Service and put it in the Service Layout
C. Enter an object specific action to Account and put it in the Account Layout
D. Enter an object specific action to Account and put it in the Service Layout

Ans C. Enter an object specific action to Account and put it in the Account Layout

Q202 What determines whether a user can create a new record using a specific record type?
A. Profile
B. Page layout
C. Field level security
D. Sharing

Ans A. Profile

Q203 Which statements are true regarding Roll-Up Summary fields? Select all that apply

A. Advanced currency management has no affect on roll-up summary fields.
B. 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.
C. Validation errors can display when saving either the detail or master record.
D. Automatically derived fields, such as current date or current user, are allowed in a roll-up summary field.
E. Once created, you cannot change the detail object selected or delete any field referenced in your roll-up summary definition.


Ans B. 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.
C. Validation errors can display when saving either the detail or master record.
E. Once created, you cannot change the detail object selected or delete any field referenced in
your roll-up summary definition.

Q204 What happens when a workflow is re-evaluated? Pick 3
A. Validation
B. Cross-object sharing rules
C. Other Workflow types
D. Previous Workflows

Ans B. Cross-object sharing rules
C. Other Workflow types
D. Previous Workflows

Q205 Which components can be added to a lightning app on custom Object? Choose 3
A. Standard Lightning component
B. Custom lightning component
C. Object specific actions on the custom object
D. Global actions
E. Visualforce

Ans A. Standard Lightning component
B. Custom lightning component
D. Global actions

Q206 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 ;

A. Error will occur
B. Insert all records
C. Insert 200 only
D. Records inserted

Ans A. Error will occur
(Too many DML rows : 10001) error

Q207 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?
A. Use New button on Account tab to create new record
B. Use the test menu on developer console to run all test classes for the account trigger.
C. Use force.com IDE
D. Use Execute Anonymous feature on developer console

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


Q208 Which is true about social accounts?
A. You can use social accounts data even when you are not logged into the social account.
B. You need a personal social account in order to see social account data
C. You can use social accounts to import data into Salesforce
D. Connection to social account is established through a company wide "named principal"


Ans B. You need a personal social account in order to see social account data

Q209 Field type conversion. Which of the following are true? (choose 2)
A. Data can be lost when converting from autonumber to text
B. Information can be lost when converting from text area (rich) to text area (long)
C. Data can be lost when converting from number to currency (assuming that field lengths are identical)
D. Data can be lost when converting from simple picklist to multi picklist

Ans A. Data can be lost when converting from autonumber to text
C. Data can be lost when converting from number to currency (assuming that field lengths are identical)

Q210 Universal Container is using assignment rules to distribute cases to regional teams. Which of the following are true?
A. It is possible to have multiple active assignment rules
B. Cases may be assigned to public groups (if configured)
C. Cases may be assigned to queues (if configured)
D. A workflow field update can be used instead


Ans C. Cases may be assigned to queues (if configured)

3 comments:

  1. very informative blog and useful article thank you for sharing with us , keep posting learn more aboutsalesforce training salesforce Online Training

    ReplyDelete
  2. What is the result of the following code snippet? Public void dowork(Account acct){ For(Integer i=0; i<=200; i++){ Insert acct; } }

    ReplyDelete