Salesforce Interview Questions with Answers Part 45

Salesforce Interview Questions with Answers Part 45

1. Performance Testing in Salesforce

Before you can performance test in your sandbox environment, you must first create a test plan and submit it to salesforce.com Customer Support.

2. PK Chunking in Salesforce

3. Divisions in Salesforce

http://www.infallibletechie.com/2017/07/divisions-in-salesforce.html

4. Community user unable view articles?

a. Check the Article type access to community user profile.
b. Make sure articles are shared to customer or partner or just Internal App.

5. How to create Global Picklist Value Sets from existing pick list field in Salesforce?

6. Default Values formula in Picklist Fields Salesforce

Salesforce provides us the feature to set the default value of a picklist field using Salesforce formulas.

7. Session-Based Permission Sets in Salesforce

8. Chatter Streams in Salesforce

9. Grant Access Using Hierarchies in Public Group in Salesforce

10. Dynamic Apex

11. JavaScript in Strict Mode

12. Are CRUD and FLS considered in Lightning component?

No. Visualforce enforces the active user’s CRUD and FLS permissions when a page renders a Salesforce object. Lightning doesn’t do any client-side authorization, so it doesn’t respect these permissions. The following code shows data to all users, even those who aren’t authorized to see it.
<b>Hello <i>{!v.User.FirstName}</i>.</b>

13. How to use JAVASCRIPT file stored in Static Resources in custom Lightning component?

ltng:require should be used.

14. {! } and {# } delimiters in Salesforce Lightning

15. force:createRecord in Salesforce Lightning 

16. How does Platform events trigger fire?

Unlike triggers on standard or custom objects, triggers on platform events don’t execute in the same Apex transaction as the one that published the event. The trigger runs asynchronously in its own process under the Automated Process entity. As a result, there might be a delay between when an event is published and when the trigger processes the event. Also, debug logs corresponding to the trigger execution are created by Automated Process. System fields, such as CreatedById and LastModifiedById, reference the Automated Process entity.

17.  Is it possible to schedule a dynamic dashboard in Salesforce?

In Salesforce, it is not possible to schedule a dynamic dashboard.

18. What is the use of static variable? 

When you declare a method or variable as static, it’s initialized only once when a class is loaded. Static variables aren’t transmitted as part of the view state for a Visualforce page. Static variables are only static within the scope of the request. They are not static across the server, or across the entire organization.

19. <force:recordView> Types?

<force:recordView recordId="a02D0000006V8Ov" type="MINI"/> - Uses Compact Layout
<force:recordView recordId="a02D0000006V8Ov" type="FULL"/> - Uses page layout

Leave a Reply