Monday, November 4, 2019

Administrator Certification Maintenance (Summer 19)

Step: 1

1. An administrator needs to customize hyperlinks to match corporate branding. Which setting can the administrator set to assign custom colors to hyperlinks?
Ans.  Use brand color

2. How can different Activities Views be used once the default Activities View is enabled by the administrator?
Ans.  Users can switch between preferences

3. Which filter option can an administrator recommend to help a manager filter on tasks for their team?
Ans.  My team's tasks

4. By how many levels can dashboard components be sorted?
Ans.  2

5. Which dashboard component should an administrator use to show subtotals?
Ans.  Lightning table



Step: 2

1. Setup->Quickfind enter Email template--> click on Lightning Email Templates
    Enable folders and Enhanced Sharing
2. Go to App Launcher--->serch apps or item Enter Email templates click on Email template
3. Click on New Foldername-->Folder Label: Sales-->click on save
4. Click on New Email Template-->Template Name: General
   Click on folder name-->select sales click on select folder
   Subject: General
   click on image insert

Platform Developer I Certification Maintenance (Summer '19)

Step -1 

1. What allows Flows to manipulate complex data types that are often returned from calls to web services?
Ans. Apex-defined data types


2. What is the benefit of using the Continuation class in Apex to make a long-running request to an external web service?

Ans. More long-running callouts can be made using continuations


3. Which Lightning web component configuration file tag set specifies the form factors that the component supports?Ans. <supportedFormFactors>


4. Which tag adds the Lightning Web Components for Visualforce JavaScript library to a Visualforce page?Ans. <apex:includeLightning/>





Step- 2


  1. In Chrome, open an incognito browser window.
  2. Select and copy this link: https://login.salesforce.com/packaging/installPackage.apexp?p0=04t4P000002EMv0
  3. In the incognito window, paste the link into the address bar to install the package.
  4. On the Salesforce login screen that appears, enter the username and password for your Trailhead Playground, then click Log In.
  5. Select Install for All Users, then click Install.
  6. Once the installation is complete, click Done.

7. Modify Batch class(first line):
    public with sharing class BatchLeadConvert implements Database.Batchable<SObject>,       Database.RaisesPlatformEvents{\
              .........
  }

8.Create below Trigger from developer console: 

  trigger BatchApexErrorTrigger on BatchApexErrorEvent (after insert) {
  list<BatchLeadConvertErrors__c> bcr= new List<BatchLeadConvertErrors__c>();
   
    for(BatchApexErrorEvent event: trigger.new){
       
        BatchLeadConvertErrors__c  evrterror= new BatchLeadConvertErrors__c ();
       
        evrterror.AsyncApexJobId__c= event.AsyncApexJobId;
        evrterror.Records__c=event.JobScope;
        evrterror.StackTrace__c=event.StackTrace;   
        bcr.add(evrterror);   
    }
   
    if(bcr.size()>0){
       
        insert bcr;
    }

 }

Monday, September 17, 2018

Salesforce Certified Administrator - Spring '18 Release Exam

1. Which three features are available with Salesforce Files?
  Choose 3 answers
 
A. Create Asset Files for Unauthenticated users.
B. Integrate Quip to chat and collaborate on Files.
C. Automatically upload .pdf files from an email attachment.
D. Access files with the view list of assets feature.
E. Allow Standard Users to create and delete content assets.


2. What must the administrator consider when enabling Themes?
 
A. There is no built-in theme if a custom theme is not created.
B. Only one theme can be active at a time and is applied to the entire org.
C. Chatter External Users also see the custom theme.
D. Any user can select a theme and avatar based on their role.


3. Which three functions are available with chart enhancements in Lightning Experience?
  Choose 3 answers
 
A. Set chart legend position.
B. Show total in the center of donut charts.
C. Display up to 2,000 groups in line and bar charts in dashboards.
D. Download chart images from dashboard components.
E. Combine small groups into "Others" on any chart.


4 of 6. The Administrator for Universal Containers is asked to provide the Sales teams with Opportunity Splits so that the opportunity owner has better visibility into their share of the deal. Which funtionality is available with Opportunity Splits?
 
A. Create a new Opportunity Split directly from the account record.
B. Add or adjust splits from the Opportunity Splits related list.
C. Send Opportunity Split notifications automatically.
D. Assign a dedicated opportunity owner to the split.


5 of 6. What are the path steps based upon when creating a campaign path?
 
A. Campaign responses
B. Business processes
C. Picklist field values
D. Lead record types


6 of 6. Which functionality is available to a support agent directly from the case feed?
 
A. Reply and forward an email
B. Configure an email template
C. Delete an email
D. Mass email

Salesforce Certified Platform Developer I - Spring '18 Release Exam

1. Which global variable can be used to detect whether a Visualforce page is loaded in Lightning apps with console navigation or standard navigation?
 
A. $Organization.UITheme
B. $UI.UserTheme
C. $Browser.formFactor
D. $User.UITheme


2. Which Salesforce command line interface (CLI) command supports the generation of new Apex triggers?
 
A. force:trigger:new
B. force:data:sobject:createtrigger
C. force:apex:trigger:create
D. force:schema:sobject: -t | createtrigger


3. What is the replacement that Salesforce recommends for Force.com IDE 2 Beta?
 
A. Developer Console
B. Salesforce Extensions for VS Code
C. MavensMate for Sublime Text
D. Workbench



4. What can be used to control the styling and behavior of the Salesforce login process?
 
A. Process Builder on login event
B. Quick Action on login event
C. Lightning component login flow
D. Visualforce Page login flow


5. Which debug type captures information related to accessing external objects with the Salesforce Connect cross-org and OData adapters?
 
A. XDS_RESPONSE
B. XDS_OBJECT
C. XDS_CONNECT
D. XDS_REQUEST

Monday, February 26, 2018

Salesforce Certified Platform Developer I - Winter '18 Release Exam

1. In which two ways does Lightning Data Service (LDS) eliminate redundant server calls in Lightning Components?
 Choose 2 answers
 
A. LDS acts as a publisher hub that notifies components of data changes.
B. LDS allows each component within an app to make independent, but concurrent, calls to perform CRUD operations on the same record data.
C. LDS can be configured as a publisher hub with simple Apex code.
D. LDS identifies requests that involve the same record data and sends a single shared data request that updates all relevant components.


2. Which Content Security Policy (CSP) configuration is required to access the Streaming API and call Apex methods from within a Lightning container component?
 
A. CSP set to custom
B. CSP set to Lightning
C. CSP set to minimum
D. CSP set to low


3. What is the correct annotation to indicate test classes that can run in parallel?
 
A. @isTest(runParallel=true)
B. @isTest
C. @isTest(isParallel=true)
D. @isTest(isParallelrun=true)


4. Which two statements are true regarding Lightning component JavaScript code validation?
  Choose 2 answers
 
A. Code validations are applied only to components set to API version 41.0 and later.
B. Code validations can be temporariy disabled by setting the component version to API 40.0 or earlier.
C. Code validations enforce all ESlint rules.
D. The validation service ensures good software design and prevent bugs.


5. What are two valid scenarios for automatic recompilation of Apex classes?
  Choose 2 answers
 
A. All Apex classes are automatically recompiled before completing a metadata deploy.
B. Specific Apex classes are automatically recompiled before completing a metadata deploy.
C. All Apex classes are automatically recompiled before a package is installed.
D. All Apex classes are automatically recompiled when Apex transactions are run.


6. In which two ways does Salesforce DX facilitate source-driven development?
  Choose 2 answers
 
A. Salesforce DX allows agile, local test runs.
B. Salesforce DX provides an efficient, end-to-end life cycle designed for waterfall development.
C. Salesforce DX provides an integrated, end-to-end life cycle designed for high-performance agile development.
D. Salesforce DX shifts the source of truth from the org to the version control system

Winter 18 Salesforce Administrator 201 Maintenance Exam

1. The sales teams at Universal Containers need to easily access the Sales Pipeline Dashboard. How can an administrator accomplish this in Lightning Experience?
 
A. Create a cross object dashboard component and add to the record
B. Create a new component for each sales user and add to their profile
C. Create a new object and add a dashboard component
D. Create a embedded dashboard and add to the Home tab


2. What functionality is available to users when adding files in Lightning Experience?
 
A. Access an external file provider and request secure Quip access
B. Create, share, and collaborate on documents with Quip without an external file provider
C. Mass upload Quip documents using the data loader
D. Create a new Quip file and add security from a downloaded file in Chatter

B

3. What functionality enables sales representatives to manage their own sales territories in Lightning Experience?
 
A. Advanced Territory Management
B. Enterprise Territory Management
C. Corporate Territory Management
D. Community Territory Management


4. Which three functions are available to a Collaborative Forecast user in Lightning Experience?
Choose 3 answers
 
A. See User Quota Attainment information
B. Adjust their own Product Family Forecast
C. Access Collaborative Forecasts in Lightning Sales Console
D. Create a Locked Forecast to prevent editing
E. Designate a Delegated Forecast Administrator


5. When does an emoji icon appear in the Chatter publisher in Lightning Experience?
 
A. When a user creates new Chatter posts and comments
B. When a user creates a new Chatter profile
C. When a user creates a new Chatter group
D. When a user creates a new Chatter Quip file

Spring 17 Salesforce Administrator 201 Maintenance Exam

1. Which two choices are available with email attachment settings?
  Choose 2 answers
 
A. Always send files as attachments, up to 3MB.
B. Always send files as content delivery links.
C. Always send files as attachments, up to 5MB.
D. Always send files as attachments.

2. What feature describes the capabilities of email-to-case record assignment to queues?
 
A. Assigning cases to queues is supported only for Outlook routing addresses.
B. Assigning cases to queues overrides the default case owner.
C. Assigning cases to queues is supported in Lightning only.
D. Assigning cases to queues uses the default case owner


3. How can an Administrator help sales representatives focus on legitimate prospects rather than unqualified leads?

A. Use rich text area (RTA) fields on Web-to-Lead forms.
B. Use a Lead Source field on Web-to-Lead forms
C. Use the reCAPTCHA widget to filter out spam.
D. Use the web-to-lead encryption feature.


4. Which two features best describe the enhanced Contact search functionality?
  Choose 2 answers
 
A. Enter the first name and the Account name, and Contacts that match the search terms are returned.
B. Enter address, the Account name, and Contacts that match the search terms are returned.
C. Enter the last name and the Account name, and Contacts that match the search terms are returned.
D. Enter the Account name, and the first and last names of all related Contacts are returned.


5. Which two Chatter Stream functionalities are available in Lightning Experience?
  Choose 2 answers
 
A. Create up to 25 entities per Chatter Stream.
B. Create up to 25 Chatter Streams in Lightning.
C. Create up to 5 Chatter Streams in Lightning or Classic.
D. Create up to 5 Chatter Streams in Lightning.