Below is the list of Salesforce Developer Interview Questions And Answers for the beginners and professional developers. It will also help the Professional salesforce developers.
It will help you to crack your next salesforce interviews.
1) How to handle the comma within a field when uploading data using Data Loader?
You will have to enclose the a comma in field content contents within double quotation marks like ” “ in Data Loader .CSV file
2) How many active assignment rules can you have in a lead/ case?
Only one rule can be active at a time.
3) What is the minimum test coverage required for trigger to deploy on production?
You must make sure that at least 75% of your Apex code is covered by unit tests and all these tests must be completed successfully in order to deploy your trigger to production in Salesforce.
4) What are the different methods of deployment in Salesforce?
Below are the best methods to deploy your code on production envirronment in Salesforce:
5) How can you call a controller method from JavaScript?
See the below code how you can call a controller method from the JavaScript code:
1 2 3 4 5 6 7 8 9 10 11 12 | <apex: page> <apex:form id ="frm"> <apex:actionfunction name="callfromJS" action="{!controllerMethodName} reRender="frm"/> </apex:form> <script> function JSmethodCallFromAnyAction() { callfromJS(); } </apex:page> |
6) What all data types can a set store?
Following are the data types which you can a set store:
7) List out the various object relations in Salesforce?
Following are the lists of various object relations in Salesforce:
8) List out the various reports available in Salesforce?
Following are the lists of various reports available in Salesforce:
9) List out the various dashboard components available in Salesforce?
Following are the lists of various dashboard components available in Salesforce:
10) How many TABS in Salesforce?
There are three type of TABS available in Salesforce:
I hope above Salesforce Developer Interview Questions And Answers helped you. If you face any other questions in your salesforce interview and want add in above list, then feel free to comment your questions in the below comment section I will add that questions with the correct answer.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.