Salesforce Interview questions with answers Part 33

Salesforce Interview questions with answers Part 33

1) Where you write code like .NET use Visual Source Safe , what Salesforce use ?

Salesforce keeps the code in Force.com

2) If there are multiple developers, whose code goes first into production what criteria u follow to send code ? how to send code to production 

Once the code is tested(UAT – User Acceptance testing) in Sandbox it will be moved to production.

3) How do you do version controlling in Salesforce?

We can use Tortoise SVN in Eclipse for this

4) Scenario : there is a company xyz …it has many like 1000 web pages with [email protected], u  need change [email protected] to [email protected] ..how you do that with code ? how to do with your salesforce?

We can use SOSL to get the records and update them.

Example:


FIND {[email protected]} IN Email Fields RETURNING Contact(Id, Email), Lead(Id, Email)

Example to get the records – https://www.infallibletechie.com/2016/01/what-is-return-type-of-sosl-search.html



5) How many API you create in your project and how?

https://www.infallibletechie.com/2014/01/different-apis-supported-in-salesforce.html


6) What database Salesforce uses? Is it cloud?

Database.com

Leave a Reply