Wednesday, July 18, 2018

Administrator Certification Maintenance (Summer ’18)



Administrator Certification Maintenance (Summer ’18)





→ Learn What’s New with Sales and Analytics


1. In what type of format does a field, using the data type Time, appear in Lightning and the Salesforce mobile app?
A. Calendar
B. Picklist
C. Clock
D. Clock Text

2. A marketing operations user has been tasked with the job of merging duplicate leads that are owned by the lead generation team. What configuration setting should the system administrator set to allow the operations users to merge and delete leads they don't own?
A. Assign the Modify All Data permission to the user.
B. Assign the Marketing User profile to the user.
C. Enable the Org-Wide Merge and Delete setting.
D. Assign the user to a Delegated Administrator Group.

3. What Salesforce feature can a system administrator configure to guide a sales rep through the customer lifecycle?
A. Path for Contacts
B. Custom Status Field
C. Path for Leads
D. Interaction Log

4. How should a system administrator organize report folders so global sales reports are grouped together, then subgrouped by region?
A. Use a folder naming convention that includes sequential numbers for each region.
B. Create a folder for sales reports and subfolders for each region.
C. Use folder sharing to limit the visibility of each region's folder.
D. Pin the Global Sales folder above the Regional folders.



→ Learn What’s New with Service and Communities


1. What type of email template must be used so users can send attachments in an email by dragging and dropping the file into the email?
A. Text only
B. HTML email publisher
C. Visualforce
D. Letterhead

2. On which page layout will users have the ability to view a dropdown menu for Reply, Reply All, and Forward email functions?
A. Case close layout
B. Activity layout
C. Home page layout
D. Case feed layout

3. What Salesforce component allows users to switch between languages when viewing knowledge articles?
A. Language Chooser
B. Language Field on the Company Profile
C. Language Field on the User Record
D. Translation Workbench

4. Where are community members able to create or revise knowledge articles?
A. Partner Community
B. Customer Community
C. Napili Template
D. Salesforce Tabs + Visualforce Template



Tuesday, July 17, 2018

Platform Developer I Certification Maintenance (Summer '18)



Platform Developer I Certification Maintenance (Summer '18)




1. Which Visualforce code can a developer use to provide Lightning look and feel to Visualforce pages?
A. <apex:includeLightning/> in the <style> element
B. lightningStylesheets=''true'' in the <style> element
C. lightningStylesheets=''true'' in the <apex:page> element
D. apex:includeLightning=''true'' in the <apex:page> element

2. How can a developer detect the current user's Salesforce user interface type in JavaScript on a Visualforce page?
A. Use the UserInfo.getUITheme() function.
B. Use the UITheme.getUITheme() function.
C. Use the Organization.getSettings() function.
D. Use the SessionManagement.getCurrentSession() function.

3. Which class enables a developer to test platform events in Apex unit tests?
A. Use the @IsTest annotation.
B. Use the HTTPCalloutMock class.
C. Use the EventBus.TestBroker class.
D. Use the @RemoteAction annotation.

4. Which Apex method eliminates the need for a SOQL query to determine the developer name for a record type?
A. System.RecordTypeId.getDeveloperName()
B. Schema.RecordTypeInfo.getRecordTypeId()
C. System.String.getDeveloperName()
D. Schema.RecordTypeInfo.getDeveloperName()

5. How can a developer troubleshoot governor limit problems in transactions that include multiple flows?
A. Use breakpoints in Developer Console.
B. Add system.debug() statements to the flow.
C. Set the Workflow debug level to Finer in the debug log.
D. Add flow screens to display limits during the flow.

6. What can a developer reference to ensure that a consistent value is used in the criteria for multiple validation rules?
A. A list custom setting in the validation rules
B. A global value set in the validation rules
C. A custom permission in the validation rules
D. A custom metadata type in the validation rules

7. Which statement is true about the new Lightning URL format?
A. URLs that use /one/one.app in emails templates must be updated.
B. Components with existing URLs that use /one/one.app will continue to work.
C. The change applies to all Salesforce apps, console apps, mobile versions, and communities.
D. Installed Lightning components will automatically translate the old URL to the new format.

8. How can a developer redirect a user to a Lightning page from a Visualforce page?
A. Generate a URL using UserInfo.getUITheme().
B. Generate a URL using PageReference.getURL().
C. Generate a URL in the format /lightning/r/sObject/sObjectID.
D. Generate a URL in the format /one/one.app#/sObject/sObectID.