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. |
What Is Wrapper Class? |
|
Answer» A WRAPPER CLASS is a class WHOSE INSTANCES are collection of other objects. It is used to display different objects on a Visual FORCE page in same table. A Wrapper class is a class whose instances are collection of other objects. It is used to display different objects on a Visual Force page in same table. |
|
| 2. |
What Is The Maximum Size Of The Pdf Generated On ‘visualforce Attribute Renderas? |
|
Answer» 15MB 15MB |
|
| 3. |
What Is Difference Between Role And Profile? |
|
Answer» Role is RECORD LEVEL ACCESS and it is not mandatory for all users. PROFILE is object level and field level access and it is mandatory for all users. Role is Record level access and it is not mandatory for all users. Profile is object level and field level access and it is mandatory for all users. |
|
| 4. |
How Many Ways We Can Made Field Is Required? |
| Answer» | |
| 5. |
What Is Difference Between Action Support And Action Function? |
|
Answer» Action function: INVOKE the controller method from JAVA script using AJAX and we can use action function from DIFFERENT places on visual force page. Action support: Invoke the controller method using AJAX when even occurs on page like onMouseOver, onClick. ect... and we can use action support for particular SINGLE apex component. Action function: Invoke the controller method from java script using AJAX and we can use action function from different places on visual force page. Action support: Invoke the controller method using AJAX when even occurs on page like onMouseOver, onClick. ect... and we can use action support for particular single apex component. |
|
| 6. |
How Many Ways We Can Call Apex Class? |
| Answer» | |
| 7. |
How To Create Master Details Relationship Between Existing Records? |
|
Answer» Directly we can’t create Master Detail relationship between existing records, first we have to create LOOKUP relationship and provide valid lookup FIELDS and it shouldn’t NULL. Directly we can’t create Master Detail relationship between existing records, first we have to create Lookup relationship and provide valid lookup fields and it shouldn’t null. |
|
| 8. |
What Is Manual Sharing? |
|
Answer» Manual sharing is to share a RECORD to a particular user manually. GO to detail page of record and click on manual sharing BUTTON and assign that record to other user with READ or Read/write access. Manual Sharing button enables only when OWD is private to that object. Manual sharing is to share a record to a particular user manually. Go to detail page of record and click on manual sharing button and assign that record to other user with Read or Read/write access. Manual Sharing button enables only when OWD is private to that object. |
|
| 9. |
What Is The Use Of “transfer Record” In Profile? |
|
Answer» If user have only Read ACCESS on particular record but he wants to CHANGE the owner name of that record, then in profile LEVEL TRANSFER Record enables he can ABLE to change the owier. If user have only Read access on particular record but he wants to change the owner name of that record, then in profile level Transfer Record enables he can able to change the owier. |
|
| 10. |
How We Can Change The Grant Access Using Role Hierarchy For Standard Objects? |
|
Answer» Not POSSIBLE. Not possible. |
|
| 11. |
Is Check Box Performs Like Controlling Field? |
|
Answer» YES POSSIBLE. CONTROLLING field should be CHECK box or pick LIST. Yes possible. Controlling field should be Check box or pick list. |
|
| 12. |
What Is Field Dependency? |
|
Answer» ACCORDING to the field SELECTION on one field FILTER the pick list values on other field. According to the field selection on one field filter the pick list values on other field. |
|
| 13. |
How To Create Roll-up Summary Field On Lookup Relation? |
|
Answer» Not POSSIBLE. Roll-up SUMMARY is ENABLED for only MASTER —Detail RELATIONSHIP. Not possible. Roll-up summary is enabled for only Master —Detail relationship. |
|
| 14. |
What Is Roll-up Summary? |
|
Answer» Roll-up DISPLAYS the count of CHILD records and calculate the SUM, Min and max of FIELDS of the child records. Roll-up displays the count of child records and calculate the sum, Min and max of fields of the child records. |
|
| 15. |
How Many Field Dependencies We Can Use In Visual Force Page? |
|
Answer» Maximum we can use 10 FIELD DEPENDENCIES in VF page. Maximum we can use 10 field dependencies in VF page. |
|
| 16. |
What Are Tile Report Types? |
|
Answer» 4 Types of report in SALESFORCE.
4 Types of report in Salesforce. |
|
| 17. |
Give An Example Of A Standard Object That’s Also Junction Object. |
|
Answer» OpportunityContactrole is the junction between OPPORTUNITY and CONTACT, and ALSO QUOTE is junction between Contract and Opportunity. OpportunityContactrole is the junction between Opportunity and Contact, and also Quote is junction between Contract and Opportunity. |
|
| 18. |
When Should You Build Solutions Declaratively Instead Of With Code? |
|
Answer» As a salesforce best PRACTICE, if something can be DONE using Configurations (Declarative) then its PREFERRED over coding. The declarative framework is OPTIMIZED for the platform and is ALWAYS preffered. As a salesforce best practice, if something can be done using Configurations (Declarative) then its preferred over coding. The declarative framework is optimized for the platform and is always preffered. |
|
| 19. |
What Are The Differences Between 15 And 18 Digit Record Ids? |
|
Answer» DIFFERENCE Between 15 and 18 Digit Record Id. Hi Experts, I would like to know the EXACT difference between 15 and 18 DIGITS record id. Most of us say, 15 digit(case sensitive) and 18 digit(case insensitive). Difference Between 15 and 18 Digit Record Id. Hi Experts, I would like to know the exact difference between 15 and 18 digits record id. Most of us say, 15 digit(case sensitive) and 18 digit(case insensitive). |
|
| 20. |
What’s The Maximum Batch Size In A Single Trigger Execution? |
|
Answer» Default BATCH size is 200 ,HOWEVER MAXIMUM batch size is 2000. Default batch size is 200 ,However maximum batch size is 2000. |
|
| 21. |
When Do You Use A Before Vs. After Trigger? |
|
Answer» 95% of triggers are before triggers – so if you’re unsure, go with before! You may be wondering why so many triggers are before triggers. There’s a GOOD reason – they’re simpler to USE. If you need to make any changes to a record entering your after trigger, you have to do a DML STATEMENT. This isn’t necessary in a before trigger – changes to records entering your trigger always save! The specific use case of an after trigger is when you need to associate any record to a record being created in your trigger. Here’s an example: // AUTOMATICALLY create an Opp when an Account is created 95% of triggers are before triggers – so if you’re unsure, go with before! You may be wondering why so many triggers are before triggers. There’s a good reason – they’re simpler to use. If you need to make any changes to a record entering your after trigger, you have to do a DML statement. This isn’t necessary in a before trigger – changes to records entering your trigger always save! The specific use case of an after trigger is when you need to associate any record to a record being created in your trigger. Here’s an example: // Automatically create an Opp when an Account is created |
|
| 22. |
Mention What Is The Difference Between Soql And Sosl? |
|
Answer» SOQL ( Salesforce OBJECT Query Language)
SOSL (Salesforce Object Search Language)
SOQL ( Salesforce Object Query Language) SOSL (Salesforce Object Search Language) |
|
| 23. |
Explain How Many Controllers Can Be Used In A Visual Force Page? |
|
Answer» As SALESFORCE comes under SAAS, ONE can USE only one controller and as many extension controller. As Salesforce comes under SaaS, one can use only one controller and as many extension controller. |
|
| 24. |
Explain What Is Dashboard? |
|
Answer» Dashboard is the pictorial REPRESENTATION of the report, and we can ADD up to 20 REPORTS in a single dashboard. Dashboard is the pictorial representation of the report, and we can add up to 20 reports in a single dashboard. |
|
| 25. |
Explain What Is Audit Trail? |
|
Answer» Audit TRAIL function is HELPFUL in knowing the information or TRACK all the recent SETUP changes that the administration does to the organization. It can store last 6 months data. Audit trail function is helpful in knowing the information or track all the recent setup changes that the administration does to the organization. It can store last 6 months data. |
|
| 26. |
Explain What The Junction Object Is And What Is The Use? |
|
Answer» Junction OBJECTS are used to build MANY-to-many relationships between objects. You can take a recruiting application example, where a POSITION for a job can be LINKED to many CANDIDATES and in the same manner a candidate can be linked to the different positions. So, to connect this data model, you need a third party object, this object is referred as junction object. Here “job application” is the junction object. Junction objects are used to build many-to-many relationships between objects. You can take a recruiting application example, where a position for a job can be linked to many candidates and in the same manner a candidate can be linked to the different positions. So, to connect this data model, you need a third party object, this object is referred as junction object. Here “job application” is the junction object. |
|
| 27. |
What Does It Indicate If An Error State This “list Has No Rows For Assignment”? |
|
Answer» The ERROR that tells “list has no ROWS for assignment” indicates that the list you are TRYING to ACCESS has no VALUES in it. The error that tells “list has no rows for assignment” indicates that the list you are trying to access has no values in it. |
|
| 28. |
Is It Possible To Schedule A Dynamic Dashboard In Salesforce? |
|
Answer» No, it is not POSSIBLE to SCHEDULE a DYNAMIC DASHBOARD in SALESFORCE. No, it is not possible to schedule a dynamic dashboard in Salesforce. |
|
| 29. |
Mention What Are The Different Types Of Reports Available In Salesforce? |
|
Answer» DIFFERENT types of REPORTS available in Salesforce are
Different types of reports available in Salesforce are |
|
| 30. |
Mention What Are The Three Types Of Object Relations In Salesforce? |
|
Answer» Different types of OBJECT relations in SALESFORCE includes Different types of object relations in Salesforce includes |
|
| 31. |
Mention What Are The Different Types Of Custom Settings In Salesforce? |
|
Answer» DIFFERENT TYPES of custom settings in Salesforce includes Different types of custom settings in Salesforce includes |
|
| 32. |
Explain What Is The Limit Of Data.com Records That Can Be Added To Salesforce? |
|
Answer» User can see their limit FORM setup, by CLICKING data.com administration/USERS. From the data.com users section, user can see their monthly limit and how many records are EXPORTED during the MONTH. User can see their limit form setup, by clicking data.com administration/Users. From the data.com users section, user can see their monthly limit and how many records are exported during the month. |
|
| 33. |
Mention What Are The Actions Available In Workflow? |
|
Answer» ACTIONS available in WORKFLOW are Actions available in workflow are |
|
| 34. |
Mention What Is The Difference Between Force.com And Salesforce.com? |
|
Answer» Force.com is PAAS (PLATFORM as a SERVICE) while Salesforce.com is SAAS ( SOFTWARE as a Service). Force.com is PaaS (Platform as a Service) while Salesforce.com is SaaS ( Software as a Service). |
|
| 35. |
Mention What Is The Use Of The Static Resource In Salesforce? |
|
Answer» With the help of static resources, you can upload ZIP files, images, jar files, JavaScript and CSS files that can be referred in a visual force PAGE. The OPTIMUM SIZE of static resources for an organization is 250 mB. With the help of static resources, you can upload zip files, images, jar files, JavaScript and CSS files that can be referred in a visual force page. The optimum size of static resources for an organization is 250 mB. |
|
| 36. |
Explain What Is The Trigger? |
|
Answer» Trigger is a CODE that is executed before or after the RECORD is updated or INSERTED. Trigger is a code that is executed before or after the record is updated or inserted. |
|
| 37. |
Mention What Is The Difference Between Isnull And Isblank? |
|
Answer» ISNULL: It supports for NUMBER FIELD ISBLANK: It supports for Text field isNull: It supports for number field isBlank: It supports for Text field |
|
| 38. |
Mention How Many Relationship Is Included In Sfdc And What Are They? |
|
Answer» There are two TYPES of relationships There are two types of relationships |
|
| 39. |
How Sales Force Is Useful In Tracking Sales? |
|
Answer» SALES force records all the basic details LIKE the number of customers served daily, daily sales volume, sales MANAGER detailed reports, sales numbers in each MONTH or quarter. Also, it keeps a track on the REPEAT customer, which is key to success for any sales organization. Sales force records all the basic details like the number of customers served daily, daily sales volume, sales manager detailed reports, sales numbers in each month or quarter. Also, it keeps a track on the repeat customer, which is key to success for any sales organization. |
|
| 40. |
How Saas Can Be Helpful To Sales Force? |
Answer»
|
|
| 41. |
Mention Changing What May Cause Data Loss? |
|
Answer» Data loss may cause due to FOLLOWING reasons
Data loss may cause due to following reasons |
|
| 42. |
Explain What Is Object Relationship Overview? |
|
Answer» Object relationship OVERVIEW in Salesforce is used to link custom object RECORDS to standard object records in a related list. In simple words, it is helpful to track PRODUCT defects associated with CUSTOMER cases. You can define different TYPES of relationship by creating custom relationship fields on an object. Object relationship overview in Salesforce is used to link custom object records to standard object records in a related list. In simple words, it is helpful to track product defects associated with customer cases. You can define different types of relationship by creating custom relationship fields on an object. |
|
| 43. |
Explain What Is A Custom Object In Sales Force? |
|
Answer» Custom objects are NOTHING but database TABLES. It stores DATA related to your company in Salesforce.com. Once you have defined custom object you can do following things like
Custom objects are nothing but database tables. It stores data related to your company in Salesforce.com. Once you have defined custom object you can do following things like |
|
| 44. |
Explain What Is Sales Force? |
|
Answer» SALESFORCE is a CRM DELIVERED as a software-as-a-service (SAAS). Salesforce is a CRM delivered as a software-as-a-service (SaaS). |
|