InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Explain skinny table. What are the considerations for skinny table? |
|
Answer» Skinny tables in Salesforce are useful in accessing the fields which are frequently USED and to avoid joins. This can improve the performance of certain read-only operations such as reports, list views, etc. Skinny tables are highly effective because skinny tables will be in sync with source tables even when the source tables are modified. You need to contact Salesforce customer support if you want to use skinny tables. You cannot create, access, or modify skinny tables yourself. For example, you need to contact Salesforce to update your skinny table definition if you want to add new fields. Considerations for skinny tables are:
The below figure displays an Account view, a CORRESPONDING database table along with a skinny table that can SPEED up account queries. Skinny Table |
|
| 2. |
What is fiscal year or economical year in Salesforce? |
|
Answer» The fiscal year or economical year is defined as the period of time used for calculating annual financial STATEMENTS based on starting and ending date of a company’s financial year. In this period of time, whatever the amount of business that Salesforce has done can be considered as fiscal year and depicts the Salesforce revenue. There are TWO types of fiscal years in Salesforce. They are:
|
|
| 3. |
What are the two types of triggers in Salesforce? |
|
Answer» Below are the two TYPES of Apex triggers in Salesforce: Before triggers: It can be used to update or validate record values before it is saved to the database. trigger TriggerName on ObjectName(before event) //Here event can be insert, update or delete{ code_block}After triggers: It can be used to ACCESS field values of the records that are set by the SYSTEM (such as record’s ID or LastModifiedDate field) that are STORED in the database and use this field VALUE to do the changes in other records. Records that fire after the triggers are read-only. trigger TriggerName on ObjectName(after event) //Here event can be insert, update or delete{ code_block} |
|
| 4. |
What are page layouts related to Salesforce? |
Answer»
|
|
| 5. |
What are record types in Salesforce? |
Answer»
|
|
| 6. |
What are the differences between trigger and workflow in Salesforce? |
||||||||||
Answer»
|
|||||||||||
| 7. |
What is Visualforce in Force.com? |
Answer»
|
|
| 8. |
What causes data loss in Salesforce? |
|
Answer» There are many things that cause data loss in Salesforce. They are: Human error:
Accidental deletion of Salesforce data:
Purposeful deletion of Salesforce data:
Data sync errors:
|
|
| 9. |
What are validation rules in Salesforce? |
Answer»
|
|
| 10. |
Explain different components of dashboard available in Salesforce. |
|
Answer» Some of Salesforce dashboard components are explained below:
|
|
| 11. |
Explain the Force.com platform |
|
Answer» Force.com is the ENTIRE framework and codebase on which the WHOLE SALESFORCE application EXISTS. We can also say that Salesforce is built on Force.com, which is a Platform as a Service (PaaS) that allows us to simplify the design, development, and deployment of cloud-based applications and websites. Developers can work with Cloud Integrated Development Environment (Cloud IDE) and deploy the applications on the servers of Force.com. |
|
| 12. |
What are the different types of reports available in Salesforce? |
|
Answer» Reports will give a clear picture to the management. Management will make use of reports to track progress towards its various goals, increase revenue, and control expenditure. Reports will also help to predict trends and thus gives the advantage of the increase in profits. There are four types of reports in Salesforce. They are as follows:
|
|
| 13. |
What are Permission sets? |
|
Answer» A Permission Set is a collection of settings or PERMISSIONS that is used to GIVE access to numerous TOOLS and functions for the user. You can use permission sets for different types of users to extend functional access without changing their profiles. Instead of creating a separate profile each time, you COULD easily create a Permission Set. |
|
| 14. |
What is junction object in Salesforce? |
|
Answer» Junction OBJECTS are useful in BUILDING MANY-to-many RELATIONSHIPS between objects in Salesforce. Consider an EXAMPLE of recruiting application, where a position for a job is linked to many candidates or a candidate can apply for many other jobs. Here, a third-party object “job application” is referred to as a junction object in order to connect the data model. In the above-given example, “job application” is the junction object. Junction Object in Salesforce |
|
| 15. |
What are Governor limits in Salesforce? |
Answer»
|
|