10 Essential Salesforce Development Interview Questions *
Toptal sourced essential questions that the best Salesforce developers and engineers can answer. Driven from our community, we encourage experts to submit questions and offer feedback.
Hire a Top Salesforce Developer NowIf we have two pages and one controller, and the pages are using the same controller, how can you retain the view state when a user redirects from one page to the other?
To retain the view state and use the previous page’s variable in a redirected page, we have to call setRedirect(false)
on a new PageReference
instance (in a button’s click handler, for example.)
What is the difference between a SOAP API and a REST API? When we can use a REST API and when we can use a SOAP API?
SOAP APIs use WSDL files to make objects and database access available to Salesforce. REST can be JSON- or XML-based, while SOAP is only XML-based. REST is most often used by mobile apps, while SOAP is used to connect with legacy systems. For example, if we want to connect to SAP using Salesforce, then SAP will provide a WSDL file to connect to their database. We can use REST when a third-party system wants to extract data from or insert data into a Salesforce database.
We use insert
so that if any error occurs in any record, the system will throw a System.DmlException: Insert failed
exception and none of the records will be inserted.
If we want to allow partially successful bulk insert operations, we use database.insert()
instead.
A batch class is an asynchronous method, so when the batch class runs, each execution method is processed in a separate thread. Now if we have mentioned one list globally to update all of the processed records in a finish method, then we will need to make this batch class stateful to retain the values of global variables. Otherwise, each thread will have its own separate copy of all global variables, so none of them will add to the list used by the main thread’s finish method.
How many types of sandbox orgs are available with Enterprise Edition? What is the use of each?
There are four types of sandbox org available with Enterprise Edition:
- Developer provides 200 MB of data space
- Developer Pro provides 1GB of data space
- Partial Copy provides 5GB of data space, records (a sample of selected objects), and sandbox template support
- Full Copy is the same as a production org, with the same record ids the production records have
Note that all of them provide:
- Standard configuration as built into Salesforce
- Apex and Metadata
- All users copied from production
The uses of the sandbox org types are:
- Developer and Developer Pro: The only difference between these two being their data space, they are both used to code and enhance existing functionality and then move it to production.
- Partial Copy: Generally, when we are dealing with large amounts of data and want to have real-time testing data, then this sandbox is helpful because Salesforce gives up to 10,000 records of each object from production data.
- Full Copy: When you want to replicate a production issue in a sandbox and fix it, then this sandbox is the perfect fit. That’s because even if you wanted to debug directly in production, you can’t. Also, sometimes to reproduce an issue and fix it, we need the exact same data, which is what a Full Copy sandbox gives you.
Can we call a class method from a custom button of an object without using a Visualforce page? If so, how? If not, why not?
Yes, we can call a class method from a custom button. To call a class method, we need to use connection JS and Apex JS in the custom button, and then we can call the Apex class method using the following syntax:
{!requireScript("/soap/ajax/20.0/connection.js")}
{!requireScript("/soap/ajax/20.0/apex.js")}
retStr = sforce.apex.execute("SampleClass", "SampleMethod",{parameters of method});
Note: The class you are calling must be a global or Webservice class.
Write Apex code to get the first date and last date of a month given in a string field where values are in the format 06-2018
, using system-provided methods.
Because the string is not a full date, we cannot use functions like Date.parse()
. Now let’s say the field name is month
:
FirstDate = date.newInstance(month.split('-')[1],month.split('-')[0],1);
LastDate = firstDate.addMonth(1).addDays(-1);
A wrapper class is an outer class that we use to bind values or objects which are not available in the inner class.
Use cases:
- Let’s say we want to display account records and we want to let the user select a record to perform an action on. We can create a wrapper class with one field as a boolean value and another as an account object, to bind the two together.
- A wrapper class is also used when we have to display data in a matrix format.
- If we want to show a scoreboard of recruiters from a placement object in a table, then we need to use a wrapper to store the recruiter name and corresponding score. Since there are many placements and many recruiters, we have to map the given placement number to its recruiters, and only then can we bind recruiters with scores and display them in a table.
What is heap size, and what is its limit for asynchronous and synchronous calls? When the heap size limit is exceeded, how can you resolve that issue?
Heap size is the size of the temporary storage of your data while executing your code in synchronous mode. All of your global variables get stored on the heap. For asynchronous mode, the heap size limit is 12 MB, and for synchronous mode, the heap size limit is 6 MB.
To reduce heap size, take the following steps:
- Reduce using global variables if not needed.
- Avoid using too many maps if not necessary. Try to reuse maps that are already defined if you’re using them for the same purpose later on, or call
clear()
when you’re done with them to free up heap space as you go. - Use filters to avoid storing unnecessary data in
List
andMap
. The heap size mainly increases due to storing data retrieved from a database in a variable. So if data are not necessary then we shouldclear()
them after we finish our use of a particularMap
orList
. - Avoid using nested
for
loops. If there is no way to avoid nested loops then put filter conditions in such a way that you can reduce execution statements.
These sample questions are intended as a starting point for your interview process. If you need additional help, explore our hiring resources—or let Toptal find the best developers, designers, marketing experts, product managers, project managers, and finance experts for you.
Submit an interview question
Submitted questions and answers are subject to review and editing, and may or may not be selected for posting, at the sole discretion of Toptal, LLC.
Looking for Salesforce Developers?
Looking for Salesforce Developers? Check out Toptal’s Salesforce developers.
Jason Sun
Jason is a US-based technical and business professional specializing in Salesforce. He is a Salesforce Developer World Championship Finalist and holds 13 certifications and an MBA from UCLA. He has 13 years of SFDC experience and has designed integrations between SFDC and web apps using native integrations and custom SOAP/REST APIs. Unlike pure developers without an MBA, he's able to advise businesses on process design and business strategy on top of technical implementation.
Show MoreSaravana Rajkumar
Saravana is a 16x Salesforce certified architect and developer with 14+ years of experience in IT, out of which 7+ years are in Salesforce. He is an expert in Community, Sales, and Service Cloud, including Field Service Lightning. Saravana excels in end-to-end application development involving business requirements analysis and preparing functional and technical designs, together with programming, unit testing, release and implementation, end-user training, and production support.
Show MoreHarpreet Arora
Harpreet is a results-driven Salesforce Revenue Cloud architect with over 10 years of experience implementing, administering, and optimizing Salesforce solutions, including quote-to-cash (QTC/Q2C), Salesforce Sales Cloud, and Salesforce Experience Cloud. He's adept at translating business requirements into functional solutions and driving successful project outcomes. Harpreet has a proven track record of streamlining processes, reducing product complexity, and improving system performance.
Show MoreToptal Connects the Top 3% of Freelance Talent All Over The World.
Join the Toptal community.