@palerock/exam-qa 1.0.6-patch17 → 1.0.6-patch18

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,981 @@
1
+ {
2
+ "title": "[咸鱼]AppBuilder-4",
3
+ "category": "[咸鱼]AppBuilder",
4
+ "questions": [
5
+ {
6
+ "describe": "The CRM Manager at Universal Containers has requested that a custom text field be converted to a picklist in order to promote better data hygiene. What needs to be considered before changing the field type? Choose 2 answers",
7
+ "answerOptions": [
8
+ {
9
+ "describe": "Existing list views that reference the field may be deleted.",
10
+ "isRight": true
11
+ },
12
+ {
13
+ "describe": "Field references will be removed in Visualforce pages",
14
+ "isRight": false
15
+ },
16
+ {
17
+ "describe": "All data should be backed up before converting a text field.",
18
+ "isRight": true
19
+ },
20
+ {
21
+ "describe": "Changing a field type will remove existing field history.",
22
+ "isRight": false
23
+ }
24
+ ],
25
+ "hashCode": -618271870
26
+ },
27
+ {
28
+ "describe": "An app Builder creates an Account validation rule on the Industry field that will throw an error if the length of the field is longer than 6 characters. Another App Builder creates a workflow rule with a field update that sets the Industry field to Technology whenever the Billing City field is set to San Francisco. What will happen the next time a sales person saves an Account with a Billing City of San Francisco?",
29
+ "answerOptions": [
30
+ {
31
+ "describe": "The record will save and the Industry field will change to Technology",
32
+ "isRight": true
33
+ },
34
+ {
35
+ "describe": "The record will not save and the validation rule's error message will be displayed",
36
+ "isRight": false
37
+ },
38
+ {
39
+ "describe": "The record will not save and no error message will be displayed",
40
+ "isRight": false
41
+ },
42
+ {
43
+ "describe": "The record will save but the Industry field will not change to Technology",
44
+ "isRight": false
45
+ }
46
+ ],
47
+ "hashCode": -905194446
48
+ },
49
+ {
50
+ "describe": "Universal Containers has two types of applicants, hourly and salary. There are separate record types for each.\nWhile all members of the human resource department need to be able to view all applicant records, only the hiring Manager and VP of HR should be able to create salary applicant records.\nWhat should the app builder recommend to meet this requirement?",
51
+ "answerOptions": [
52
+ {
53
+ "describe": "Update the org-wide default to private and create a sharing rule for the role of recruiting manager.",
54
+ "isRight": false
55
+ },
56
+ {
57
+ "describe": "Create a permission set containing the salary record type and assign it to the appropriate users.",
58
+ "isRight": true
59
+ },
60
+ {
61
+ "describe": "Remove \"create\" permission for the salary applicant object for everyone except the manager and VP.",
62
+ "isRight": false
63
+ },
64
+ {
65
+ "describe": "Configure the hourly record type as the default and instruct non-management users to accept the default record type.",
66
+ "isRight": false
67
+ }
68
+ ],
69
+ "hashCode": -901918882
70
+ },
71
+ {
72
+ "describe": "Universal Containers would like to collaborate with its customers within Salesforce, and has decided to enable the \"Allow Customer Invitations\" Chatter setting. What permission is granted to Customers when invited to Chatter Group?",
73
+ "answerOptions": [
74
+ {
75
+ "describe": "The ability to invite members to groups of which they are a member",
76
+ "isRight": false
77
+ },
78
+ {
79
+ "describe": "The ability to @mention accounts of which they are a contact.",
80
+ "isRight": false
81
+ },
82
+ {
83
+ "describe": "The ability to request access to public groups",
84
+ "isRight": false
85
+ },
86
+ {
87
+ "describe": "The ability to interact with members of their groups",
88
+ "isRight": true
89
+ }
90
+ ],
91
+ "hashCode": 609446511
92
+ },
93
+ {
94
+ "describe": "At Universal Containers, the VP of Service has requested a visual indicator flag on each case, based on the case priority. High-priority cases should be flagged red, medium-priority should be flagged yellow, and low-priority cases should be flagged green. Which formula would accomplish this requirement? Choose 2 answers",
95
+ "answerOptions": [
96
+ {
97
+ "describe": "CASE( Priority, \"Low\", \"img/samples/flag_green.gif\", \"Medium\", \"img/samples/flag_yellow.gif\", \"High\", \"img/samples/flag_red.gif\", \"/s.gif\")",
98
+ "isRight": false
99
+ },
100
+ {
101
+ "describe": "IMAGE( IF(ISPICKVAL(Priority, \"Low\"), \"img/samples/flag_green.gif\", IF(ISPICKVAL(Priority, \"Medium\"), \"img/samples/flag_yellow.gif\", IF(ISPICKVAL(Priority, \"High\"), \"img/samples/flag_red.gif\"))), \"Priority Flag\")",
102
+ "isRight": true
103
+ },
104
+ {
105
+ "describe": "IF(ISPICKVAL(Priority, \"Low\"), \"img/samples/flag_green.gif\", IF(ISPICKVAL(Priority, \"Medium\"), \"img/samples/flag_yellow.gif\", IF(ISPICKVAL(Priority, \"High\"), \"img/samples/flag_red.gif\", \"/s.gif\")))",
106
+ "isRight": false
107
+ },
108
+ {
109
+ "describe": "IMAGE(CASE( Priority, \"Low\", \"img/samples/flag_green.gif\", \"Medium\", \"img/samples/flag_yellow.gif\", \"High\", \"img/samples/flag_red.gif\", \"Priority Flag\")",
110
+ "isRight": true
111
+ }
112
+ ],
113
+ "hashCode": 290326490
114
+ },
115
+ {
116
+ "describe": "The Director of Marketing at Northern Trail Outfitters wants the app builder to create a\n3\nformula field that tracks how many days have elapsed since a contact was sent a marketing communication. The director is only interested in whole units.\nWhich function should be used to return a date for calculating the difference?",
117
+ "answerOptions": [
118
+ {
119
+ "describe": "DATFTIMEVALUE()",
120
+ "isRight": false
121
+ },
122
+ {
123
+ "describe": "TODAY()",
124
+ "isRight": true
125
+ },
126
+ {
127
+ "describe": "DATEVALUE()",
128
+ "isRight": false
129
+ },
130
+ {
131
+ "describe": "NOW()",
132
+ "isRight": false
133
+ }
134
+ ],
135
+ "hashCode": 1918197712
136
+ },
137
+ {
138
+ "describe": "Cloud Kicks has leads owned by users and queues. The sales manager wants the status to change to working when a user takes ownership.\nWhat does an app builder need to have in the criteria to ensure the process runs without error?",
139
+ "answerOptions": [
140
+ {
141
+ "describe": "BEGINS([Lead].OwnerId, ,,005\")",
142
+ "isRight": false
143
+ },
144
+ {
145
+ "describe": "[Lead].Owner:User.Role Is Null = False",
146
+ "isRight": false
147
+ },
148
+ {
149
+ "describe": "[Lead].Owner:Queue.OwnerId Is Null = True",
150
+ "isRight": false
151
+ },
152
+ {
153
+ "describe": "NOT(ISBLANK([Lead].OwnerId))",
154
+ "isRight": true
155
+ }
156
+ ],
157
+ "hashCode": -1852673768
158
+ },
159
+ {
160
+ "describe": "Which opportunity standard field is available to be configured directly? Choose3",
161
+ "answerOptions": [
162
+ {
163
+ "describe": "Forecast category",
164
+ "isRight": false
165
+ },
166
+ {
167
+ "describe": "Stage",
168
+ "isRight": true
169
+ },
170
+ {
171
+ "describe": "Lead source",
172
+ "isRight": true
173
+ },
174
+ {
175
+ "describe": "Type",
176
+ "isRight": true
177
+ }
178
+ ],
179
+ "hashCode": -658309216
180
+ },
181
+ {
182
+ "describe": "The VP of Sales wants a Chatter post to the All-Sales private group when an opportunity goes to the closed won stage.\nWhat two tools should the app builder use to automate this process? Choose 2 answers",
183
+ "answerOptions": [
184
+ {
185
+ "describe": "Flow",
186
+ "isRight": true
187
+ },
188
+ {
189
+ "describe": "Process Builder",
190
+ "isRight": true
191
+ },
192
+ {
193
+ "describe": "Big Deal Alert",
194
+ "isRight": false
195
+ },
196
+ {
197
+ "describe": "Workflow",
198
+ "isRight": false
199
+ }
200
+ ],
201
+ "hashCode": -1579522962
202
+ },
203
+ {
204
+ "describe": "Service agents at Ursa Major Solar want a more condensed case view. Service agents also want to be able to modify the associated contact and account records from the case page layout on the Lightning record page.\nWhich two components should an app builder use to meet these requirements?\nChoose 2 answers",
205
+ "answerOptions": [
206
+ {
207
+ "describe": "Path",
208
+ "isRight": false
209
+ },
210
+ {
211
+ "describe": "Rich text",
212
+ "isRight": false
213
+ },
214
+ {
215
+ "describe": "Related record",
216
+ "isRight": true
217
+ },
218
+ {
219
+ "describe": "Tabs",
220
+ "isRight": true
221
+ }
222
+ ],
223
+ "hashCode": -2045822996
224
+ },
225
+ {
226
+ "describe": "A Cloud Kicks employee submitted an opportunity for approval by their manager.\n3\nWhat would happen if the employee attempts to edit the description field after submission?",
227
+ "answerOptions": [
228
+ {
229
+ "describe": "User will be presented with a 'Record Lock' notification.",
230
+ "isRight": true
231
+ },
232
+ {
233
+ "describe": "User will be able to edit the description field only.",
234
+ "isRight": false
235
+ },
236
+ {
237
+ "describe": "User will see the record is now owned by their manager.",
238
+ "isRight": false
239
+ },
240
+ {
241
+ "describe": "User will be able to edit the name, but unable to edit the description.",
242
+ "isRight": false
243
+ }
244
+ ],
245
+ "hashCode": 1136052495
246
+ },
247
+ {
248
+ "describe": "Which two places can an app builder go to see a list of available Custom Lightning components in their org?\nChoose 2 answers",
249
+ "answerOptions": [
250
+ {
251
+ "describe": "Visualforce components in Setup",
252
+ "isRight": false
253
+ },
254
+ {
255
+ "describe": "Lightning component Generator",
256
+ "isRight": false
257
+ },
258
+ {
259
+ "describe": "Lightning App Builder",
260
+ "isRight": true
261
+ },
262
+ {
263
+ "describe": "Lightning components in Setup",
264
+ "isRight": true
265
+ }
266
+ ],
267
+ "hashCode": 1207336951
268
+ },
269
+ {
270
+ "describe": "Universal Containers wants to display the real-time stock price for each Account on the Account record page.\nHow should an app builder implement this request?",
271
+ "answerOptions": [
272
+ {
273
+ "describe": "Create a Lightning Web Component.",
274
+ "isRight": false
275
+ },
276
+ {
277
+ "describe": "Install a solution from the AppExchange.",
278
+ "isRight": true
279
+ },
280
+ {
281
+ "describe": "Build a Flow that uses API calls.",
282
+ "isRight": false
283
+ },
284
+ {
285
+ "describe": "Use a scheduled Apex job.",
286
+ "isRight": false
287
+ }
288
+ ],
289
+ "hashCode": -2070532416
290
+ },
291
+ {
292
+ "describe": "The Director of customer service wants to receive a notification when a case stays in the '' new'' status for more than four business hours.\nWhich two automation processes should be used to accomplish this?\nChoose 2 answers",
293
+ "answerOptions": [
294
+ {
295
+ "describe": "Escalation rules",
296
+ "isRight": true
297
+ },
298
+ {
299
+ "describe": "Flow Builder",
300
+ "isRight": false
301
+ },
302
+ {
303
+ "describe": "Process Builder",
304
+ "isRight": true
305
+ },
306
+ {
307
+ "describe": "Scheduled Apex",
308
+ "isRight": false
309
+ }
310
+ ],
311
+ "hashCode": -1491019969
312
+ },
313
+ {
314
+ "describe": "Cloud Kicks (CK) wants to begin socializing and collaborating within Salesforce around customer accounts to discuss various topics. CK would like all company employees to see these\n3\nconversations.\nWhich two features of Chatter would meet CK's business needs? Choose 2 answers",
315
+ "answerOptions": [
316
+ {
317
+ "describe": "Set up new private Chatter groups.",
318
+ "isRight": false
319
+ },
320
+ {
321
+ "describe": "Set up new public Chatter groups.",
322
+ "isRight": true
323
+ },
324
+ {
325
+ "describe": "Use post action on the Account object.",
326
+ "isRight": true
327
+ },
328
+ {
329
+ "describe": "Use Chatter actions to create tasks to complete.",
330
+ "isRight": false
331
+ }
332
+ ],
333
+ "hashCode": 715481810
334
+ },
335
+ {
336
+ "describe": "At Universal Containers, each admin and developer use a separate developer pro sandbox. Configuration and code are then migrated to a partial data sandbox for combination and initial testing. Once approved the configuration and code are then migrated to a full sandbox for final toad and regression testing before going to production.\nWhen should the full sandbox be refreshed?",
337
+ "answerOptions": [
338
+ {
339
+ "describe": "After user acceptance testing is complete.",
340
+ "isRight": false
341
+ },
342
+ {
343
+ "describe": "After each push from the partial data sandbox.",
344
+ "isRight": true
345
+ },
346
+ {
347
+ "describe": "After each major release to production.",
348
+ "isRight": false
349
+ },
350
+ {
351
+ "describe": "After a new user is added to production.",
352
+ "isRight": false
353
+ }
354
+ ],
355
+ "hashCode": 60179855
356
+ },
357
+ {
358
+ "describe": "Universal Containers has a customer base where many customers have the same or similar company names.\nWhich functionality should be configured to improve an end user`s search experience?\nChoose 2 answers",
359
+ "answerOptions": [
360
+ {
361
+ "describe": "Update the account search layouts view filtersettings.",
362
+ "isRight": false
363
+ },
364
+ {
365
+ "describe": "Update the account search layouts search results columnsdisplayed.",
366
+ "isRight": true
367
+ },
368
+ {
369
+ "describe": "Update the account search filter fields.",
370
+ "isRight": true
371
+ },
372
+ {
373
+ "describe": "Update the account search layouts accounts tab columns displayed.",
374
+ "isRight": false
375
+ }
376
+ ],
377
+ "hashCode": -844985662
378
+ },
379
+ {
380
+ "describe": "At Ursa Major Solar there is a requirement for a new field called Planet Details on the Planet object where users can write detailed descriptions that can include pictures and links.\nWhat field type should the app builder utilize to fulfill this requirement?",
381
+ "answerOptions": [
382
+ {
383
+ "describe": "Long Text Area",
384
+ "isRight": true
385
+ },
386
+ {
387
+ "describe": "Rich Text Area",
388
+ "isRight": false
389
+ },
390
+ {
391
+ "describe": "Multi-Select Picklist",
392
+ "isRight": false
393
+ },
394
+ {
395
+ "describe": "URL",
396
+ "isRight": false
397
+ }
398
+ ],
399
+ "hashCode": 713146609
400
+ },
401
+ {
402
+ "describe": "Universal containers wants to display the real time stock price for each account on the account record page.\nHow should an app builder implement this request?",
403
+ "answerOptions": [
404
+ {
405
+ "describe": "Add a dynamic report to the page layout",
406
+ "isRight": false
407
+ },
408
+ {
409
+ "describe": "Create a lightning web component",
410
+ "isRight": false
411
+ },
412
+ {
413
+ "describe": "Install a solution from the appexchange",
414
+ "isRight": true
415
+ },
416
+ {
417
+ "describe": "Build a visual flow that users API calls\n3",
418
+ "isRight": false
419
+ }
420
+ ],
421
+ "hashCode": -334251815
422
+ },
423
+ {
424
+ "describe": "A user is unable to use inline editing on a list view. A quick check verifies the user should be able to perform inline editing as they have been assigned the appropriate permissions.\nWhich two conditions should the app builder review?\nChoose 2 answers",
425
+ "answerOptions": [
426
+ {
427
+ "describe": "If the list view restricts sharing for the user",
428
+ "isRight": true
429
+ },
430
+ {
431
+ "describe": "If the list view selected is the recently viewed list view",
432
+ "isRight": false
433
+ },
434
+ {
435
+ "describe": "If the list view contains a chart created by the user",
436
+ "isRight": false
437
+ },
438
+ {
439
+ "describe": "If the list view contains more than one record type",
440
+ "isRight": true
441
+ }
442
+ ],
443
+ "hashCode": 1066736784
444
+ },
445
+ {
446
+ "describe": "A recently refreshed partial sandbox at Cloud Kicks has no data In the custom object Shipping. Checking In production, there are two million rows of data in the object.\nWhat could be the reason the data Is missing?",
447
+ "answerOptions": [
448
+ {
449
+ "describe": "The sandbox was refreshed too early.",
450
+ "isRight": false
451
+ },
452
+ {
453
+ "describe": "The selected objects in the sandbox template.",
454
+ "isRight": true
455
+ },
456
+ {
457
+ "describe": "The Partial sandbox is at capacity.",
458
+ "isRight": false
459
+ },
460
+ {
461
+ "describe": "The sandbox is still populating data.",
462
+ "isRight": false
463
+ }
464
+ ],
465
+ "hashCode": -15246493
466
+ },
467
+ {
468
+ "describe": "Universal Containers wants some enhancements on its Opportunity page layout to improve efficiency and collaboration.\nWhich two solutions should an app builder suggest to help meet these requirements?\nChoose 2 answers",
469
+ "answerOptions": [
470
+ {
471
+ "describe": "Mark stage dependent fields as required on the Opportunity page layout.",
472
+ "isRight": true
473
+ },
474
+ {
475
+ "describe": "Use two Tabs components to separate record information from activities.",
476
+ "isRight": false
477
+ },
478
+ {
479
+ "describe": "Add a Path component with fields and instructions aligning to stages on the Opportunity.",
480
+ "isRight": true
481
+ },
482
+ {
483
+ "describe": "Set up an approval process requiring manager consent at each stage of the Opportunity.",
484
+ "isRight": false
485
+ }
486
+ ],
487
+ "hashCode": -129161091
488
+ },
489
+ {
490
+ "describe": "Universal Containers is expecting impacts to operations due to increased demand. The executive team will be reaching out to current customers and want to see the number of open cases for the account and parent account.\nWhich two tools could an app builder combine to display the number of open cases on the account page?\n3\nChoose 2 answers",
491
+ "answerOptions": [
492
+ {
493
+ "describe": "Approval Process",
494
+ "isRight": false
495
+ },
496
+ {
497
+ "describe": "Flow",
498
+ "isRight": false
499
+ },
500
+ {
501
+ "describe": "Workflow",
502
+ "isRight": true
503
+ },
504
+ {
505
+ "describe": "Process Builder",
506
+ "isRight": true
507
+ }
508
+ ],
509
+ "hashCode": 1738417001
510
+ },
511
+ {
512
+ "describe": "Cloud Kicks asked the app builder to insert a list of 25,000 records using deduplication for the Race_Track__c custom object.\nWhich tool should be used?",
513
+ "answerOptions": [
514
+ {
515
+ "describe": "Import Wizard",
516
+ "isRight": true
517
+ },
518
+ {
519
+ "describe": "Lightning Object Creator",
520
+ "isRight": false
521
+ },
522
+ {
523
+ "describe": "Data Loader",
524
+ "isRight": false
525
+ },
526
+ {
527
+ "describe": "Schema Builder",
528
+ "isRight": false
529
+ }
530
+ ],
531
+ "hashCode": 1546876281
532
+ },
533
+ {
534
+ "describe": "Which three Salesforce functionalities are ignored when processing field updates in workflow rules and approval processes?",
535
+ "answerOptions": [
536
+ {
537
+ "describe": "Multiple currencies",
538
+ "isRight": true
539
+ },
540
+ {
541
+ "describe": "Field-Level Security",
542
+ "isRight": false
543
+ },
544
+ {
545
+ "describe": "Validation Rules",
546
+ "isRight": false
547
+ },
548
+ {
549
+ "describe": "Record type picklist value assignments",
550
+ "isRight": true
551
+ },
552
+ {
553
+ "describe": "Decimal places and character limits",
554
+ "isRight": true
555
+ }
556
+ ],
557
+ "hashCode": 795599285
558
+ },
559
+ {
560
+ "describe": "Universal Containers conduct evaluations of their sales reps using a custom object consisting of numerical scores and executive comments. The company wants to ensure that only the sales reps, and their manager's executive can view the rep's evaluation record but the reps should not be able to view the executive comment field on their review. How can these requirement be met?",
561
+ "answerOptions": [
562
+ {
563
+ "describe": "Use a private sharing model granting record access using hierarchy; manage field access with record types and field-level security",
564
+ "isRight": false
565
+ },
566
+ {
567
+ "describe": "Use a private sharing model granting record access using custom setting; manage field access with page layouts and field level security",
568
+ "isRight": false
569
+ },
570
+ {
571
+ "describe": "Use a private sharing model granting record access using hierarchy; manage field access with field-level security",
572
+ "isRight": true
573
+ },
574
+ {
575
+ "describe": "Use a private sharing model granting record access using custom setting; manage field access with record types and page layouts",
576
+ "isRight": false
577
+ }
578
+ ],
579
+ "hashCode": 962265479
580
+ },
581
+ {
582
+ "describe": "The marketing team at UVC has a list of 400 leads it wants to upload to Salesforce. The team need to avoid creating duplicate records. Which two actions should be taken to meet this requirement? Choose 2 answers",
583
+ "answerOptions": [
584
+ {
585
+ "describe": "Utilize a Lead Matching Rule and corresponding Duplicate Rule to block newly created duplicate leads.",
586
+ "isRight": true
587
+ },
588
+ {
589
+ "describe": "Upload the lead list using the import wizard and select a Matching type to prevent duplicate lead\n4\ncreation.",
590
+ "isRight": true
591
+ },
592
+ {
593
+ "describe": "Use Data Loader's update function to import lead and match to existing records based on e-mail address.",
594
+ "isRight": false
595
+ },
596
+ {
597
+ "describe": "Enable Duplicate Matching in the Data Management section in Setup and activate the Lead-to_Lead scenario.",
598
+ "isRight": false
599
+ }
600
+ ],
601
+ "hashCode": 460085849
602
+ },
603
+ {
604
+ "describe": "A new field has been added to the Applicant object that is part of an unmanaged package. A recruiter ran the Position with or without Applicants report and noticed that the new field was missing as an option to add as a column.\nHow should an app builder troubleshoot this issue?",
605
+ "answerOptions": [
606
+ {
607
+ "describe": "Adjust the field level security to include in the report type.",
608
+ "isRight": false
609
+ },
610
+ {
611
+ "describe": "Check Allow Reports for the position and applicant objects.",
612
+ "isRight": false
613
+ },
614
+ {
615
+ "describe": "Add the field to the custom report type field layout.",
616
+ "isRight": true
617
+ },
618
+ {
619
+ "describe": "Update the profile with the Manage Public Reports permission.",
620
+ "isRight": false
621
+ }
622
+ ],
623
+ "hashCode": 1220970295
624
+ },
625
+ {
626
+ "describe": "An app builder received a request to extend record access beyond the organization-wide defaults configured.\nWhich two features satisfy this requirement?\nChoose 2 answers",
627
+ "answerOptions": [
628
+ {
629
+ "describe": "Sharing Rules",
630
+ "isRight": true
631
+ },
632
+ {
633
+ "describe": "Public Groups",
634
+ "isRight": true
635
+ },
636
+ {
637
+ "describe": "Permission Set Groups",
638
+ "isRight": false
639
+ },
640
+ {
641
+ "describe": "Manual Sharing Rules",
642
+ "isRight": false
643
+ }
644
+ ],
645
+ "hashCode": 1224411788
646
+ },
647
+ {
648
+ "describe": "Universal Containers has a new custom object for Invoices that includes an InvoiceNumber field, Before the Invoice object can be used, invoices will be migrated from an external system maintaining their current InvoiceNumber. After the migration, salesforce will be the system of record and each new Invoice created in Salesforce must have a unique InvoiceNumber.\nHow should the app builder configure the InvoiceNumber field?",
649
+ "answerOptions": [
650
+ {
651
+ "describe": "Create a Text filed for the original InvoiceNumber and an AutoNumber field for the Salesforce InvoiceNumber.",
652
+ "isRight": false
653
+ },
654
+ {
655
+ "describe": "Create a Text field and mark it as a unique external ID field.",
656
+ "isRight": true
657
+ },
658
+ {
659
+ "describe": "Create a Text field, then change it to AutoNumber after the migration.",
660
+ "isRight": false
661
+ },
662
+ {
663
+ "describe": "Create an AutoNumber field and migrate the Invoices\n4",
664
+ "isRight": false
665
+ }
666
+ ],
667
+ "hashCode": 2109939651
668
+ },
669
+ {
670
+ "describe": "Properly installing managed packages helps prevent conflicts with customizations made by customers and partners.\nWhat functionality should be used to set up packages?",
671
+ "answerOptions": [
672
+ {
673
+ "describe": "Description",
674
+ "isRight": false
675
+ },
676
+ {
677
+ "describe": "Allow sharing",
678
+ "isRight": false
679
+ },
680
+ {
681
+ "describe": "Help setting",
682
+ "isRight": false
683
+ },
684
+ {
685
+ "describe": "Namespace",
686
+ "isRight": true
687
+ }
688
+ ],
689
+ "hashCode": -1640607958
690
+ },
691
+ {
692
+ "describe": "An app builder has deployed a change set from a sandbox to production. There is a long delay in the deployment.\nWhat can be causing the delay?\nA Profiles are included in the change set.\nB",
693
+ "answerOptions": [
694
+ {
695
+ "describe": "field type change is included in the change set.\nC Dependent fields are included in the change set.\nD Roles are included in the change set.",
696
+ "isRight": false
697
+ }
698
+ ],
699
+ "hashCode": -1469148079
700
+ },
701
+ {
702
+ "describe": "Northern Trail Outfitters uses a custom object to track travel requests. Rangers want to have automatic posts on a record whenever a travel request has been approved.\nWhich feature should be used to accomplish this?",
703
+ "answerOptions": [
704
+ {
705
+ "describe": "Auto-response rule",
706
+ "isRight": false
707
+ },
708
+ {
709
+ "describe": "Workflow rule",
710
+ "isRight": false
711
+ },
712
+ {
713
+ "describe": "Feed tracking",
714
+ "isRight": true
715
+ },
716
+ {
717
+ "describe": "Feed quick action",
718
+ "isRight": false
719
+ }
720
+ ],
721
+ "hashCode": -594708338
722
+ },
723
+ {
724
+ "describe": "Universal containers (uc) wants to delete data in several fields for 5000 lead records. UC export the selected record IDs and fields that need to have data deleted in a csv file. Which two steps should an app builder suggest to meet these requirements ? Choose 2 answers",
725
+ "answerOptions": [
726
+ {
727
+ "describe": "Select the correct record type",
728
+ "isRight": false
729
+ },
730
+ {
731
+ "describe": "Use import Wizard to update leads using the CSV file",
732
+ "isRight": false
733
+ },
734
+ {
735
+ "describe": "Select insert null values in settings.",
736
+ "isRight": true
737
+ },
738
+ {
739
+ "describe": "Use Data Loader to update leads using the CSV file",
740
+ "isRight": true
741
+ }
742
+ ],
743
+ "hashCode": 1801000846
744
+ },
745
+ {
746
+ "describe": "Ursa Major Solar (UMS) has a custom object where they track Galactic Vendors. The object has four custom fields for the Galactic Vendors's location:\n4\nThe UMS's leadership wants these fields to be concatenated into a single formula field on two lines. Which formula fulfills this requirement?\nA)\nB)\nC)\nD)\nA Option",
747
+ "answerOptions": [
748
+ {
749
+ "describe": "B Option",
750
+ "isRight": false
751
+ },
752
+ {
753
+ "describe": "C Option",
754
+ "isRight": false
755
+ },
756
+ {
757
+ "describe": "D Option",
758
+ "isRight": true
759
+ },
760
+ {
761
+ "describe": "",
762
+ "isRight": false
763
+ }
764
+ ],
765
+ "hashCode": -662018587
766
+ },
767
+ {
768
+ "describe": "Sales reps at Universal Containers create multiple quotes per opportunity. What automation tool should an app builder recommend to delete rejected quotes?",
769
+ "answerOptions": [
770
+ {
771
+ "describe": "Approval process",
772
+ "isRight": false
773
+ },
774
+ {
775
+ "describe": "Validation rule",
776
+ "isRight": false
777
+ },
778
+ {
779
+ "describe": "Workflow rule",
780
+ "isRight": false
781
+ },
782
+ {
783
+ "describe": "Flow",
784
+ "isRight": true
785
+ }
786
+ ],
787
+ "hashCode": -812045867
788
+ },
789
+ {
790
+ "describe": "Universal Container wants customers to be able to open cases from a public-facing website. What should the app builder use to enable visitors to the website?",
791
+ "answerOptions": [
792
+ {
793
+ "describe": "Outbound message",
794
+ "isRight": false
795
+ },
796
+ {
797
+ "describe": "Web-to-case",
798
+ "isRight": false
799
+ },
800
+ {
801
+ "describe": "Screen flow",
802
+ "isRight": false
803
+ },
804
+ {
805
+ "describe": "Email-to-case\n4",
806
+ "isRight": true
807
+ }
808
+ ],
809
+ "hashCode": -1412949474
810
+ },
811
+ {
812
+ "describe": "An app builder has a custom component they want to make available on the utility bar, but the component is unavailable.\nHow should the component be tagged?",
813
+ "answerOptions": [
814
+ {
815
+ "describe": "For use on record pages.",
816
+ "isRight": false
817
+ },
818
+ {
819
+ "describe": "For use in Lightning App Builder.",
820
+ "isRight": true
821
+ },
822
+ {
823
+ "describe": "For use on the utility bar.",
824
+ "isRight": false
825
+ },
826
+ {
827
+ "describe": "For use in App Manager.",
828
+ "isRight": false
829
+ }
830
+ ],
831
+ "hashCode": 199711996
832
+ },
833
+ {
834
+ "describe": "A new custom object is being created with a private sharing setting. The business wants to share individual records with specific people or group of people on a case by case basis. What options does the business user have to manually share individual records? Choose 3 answers",
835
+ "answerOptions": [
836
+ {
837
+ "describe": "Public Groups",
838
+ "isRight": true
839
+ },
840
+ {
841
+ "describe": "Permission Sets",
842
+ "isRight": false
843
+ },
844
+ {
845
+ "describe": "Roles",
846
+ "isRight": true
847
+ },
848
+ {
849
+ "describe": "Profiles",
850
+ "isRight": false
851
+ },
852
+ {
853
+ "describe": "Users",
854
+ "isRight": true
855
+ }
856
+ ],
857
+ "hashCode": 1558928671
858
+ },
859
+ {
860
+ "describe": "An App Builder wants to deploy a new version of an auto launched flow to production in an active state so that the new functionality Is immediately available to users What should the App Builder rake Into consideration when planning the deployment?",
861
+ "answerOptions": [
862
+ {
863
+ "describe": "Verify there is an Apex test that provides test coverage for the Flow.",
864
+ "isRight": true
865
+ },
866
+ {
867
+ "describe": "Grant user access to the Flow.",
868
+ "isRight": false
869
+ },
870
+ {
871
+ "describe": "Manually activate the Flow after deployment",
872
+ "isRight": false
873
+ },
874
+ {
875
+ "describe": "Include the Process Builder calling the Flow In the deployment",
876
+ "isRight": false
877
+ }
878
+ ],
879
+ "hashCode": -1064518845
880
+ },
881
+ {
882
+ "describe": "Cloud Kicks wants to start tracking how many shoe subscriptions have been sold for each shoe catalog. A master-detail relationship exists between the Subscription__c and the Shoe__c objects.\nWhich type of field should an app builder create?",
883
+ "answerOptions": [
884
+ {
885
+ "describe": "Roll-up summary field",
886
+ "isRight": true
887
+ },
888
+ {
889
+ "describe": "Lookup field",
890
+ "isRight": false
891
+ },
892
+ {
893
+ "describe": "Master-detail relationship field",
894
+ "isRight": false
895
+ },
896
+ {
897
+ "describe": "Number field",
898
+ "isRight": false
899
+ }
900
+ ],
901
+ "hashCode": -943458003
902
+ },
903
+ {
904
+ "describe": "When an opportunity is closed date is pushed more than 30 days, manager approval is required. An approval process is in place but reps frequently forget to submit for approval to run the process.\nHow can an app builder ensure that these opportunities are submitted into the approval process?",
905
+ "answerOptions": [
906
+ {
907
+ "describe": "Change the entry criteria on the approval process to criteria are met and lock the record on initial submission.\n4",
908
+ "isRight": false
909
+ },
910
+ {
911
+ "describe": "Use a validation rule and an email alert to the manager requesting approval.",
912
+ "isRight": false
913
+ },
914
+ {
915
+ "describe": "Submit the record for approval from an automated process.",
916
+ "isRight": true
917
+ },
918
+ {
919
+ "describe": "Give the manager the \"API Enabled\" permission to permit approval responses by email.",
920
+ "isRight": false
921
+ }
922
+ ],
923
+ "hashCode": -467446038
924
+ },
925
+ {
926
+ "describe": "The finance manager at Universal Containers wants to receive a new business notification email each time a new client is won. The sales manager wants to receive a task letting them know to onboard the new client unless it is a top-tier client.\nWhich automation tool should an app builder use to best address all these requests?",
927
+ "answerOptions": [
928
+ {
929
+ "describe": "Record-triggered flow",
930
+ "isRight": true
931
+ },
932
+ {
933
+ "describe": "Screen flow",
934
+ "isRight": false
935
+ },
936
+ {
937
+ "describe": "Apex",
938
+ "isRight": false
939
+ },
940
+ {
941
+ "describe": "Approval process",
942
+ "isRight": false
943
+ }
944
+ ],
945
+ "hashCode": -1845166725
946
+ },
947
+ {
948
+ "describe": "The app builder at Ursa Major Solar has just created a master-detail relationship between a parent object Galaxy__c and child object Star__c.\nWhat would be the effect of creating this type of relationship if users want to report on Galaxy__c with Star__c?\nA A Star__c report type with Galaxy__c as a field will be automatically created.\nB A new custom report type will need to be created for Star__c with lookup fields from Galaxy__c.\nC A Galaxy__c with Star__c report type will be automatically created.\nD",
949
+ "answerOptions": [
950
+ {
951
+ "describe": "new custom report type will need to be created for Galaxy__c with Star__c.",
952
+ "isRight": false
953
+ }
954
+ ],
955
+ "hashCode": -1960132764
956
+ },
957
+ {
958
+ "describe": "An app builder installed a custom Lightning component from AppExchange and has deployed My Domain.\nWhat should be done next in order to configure the component for use in a record page?",
959
+ "answerOptions": [
960
+ {
961
+ "describe": "Edit a record page using Lightning App Builder > Drag the component onto the page.",
962
+ "isRight": true
963
+ },
964
+ {
965
+ "describe": "Edit a record page using the Page Layout editor > Drag the component onto the page.",
966
+ "isRight": false
967
+ },
968
+ {
969
+ "describe": "Edit a record page using the Page Layout editor > Drag the Visualforce component onto the page.",
970
+ "isRight": false
971
+ },
972
+ {
973
+ "describe": "Edit a record page using App Manager > Drag the component onto the page.",
974
+ "isRight": false
975
+ }
976
+ ],
977
+ "hashCode": 34137454
978
+ }
979
+ ],
980
+ "hashCode": 328385631
981
+ }