10 Essential Salesforce 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 Now
Toptal logois an exclusive network of the top freelance software developers, designers, finance experts, product managers, and project managers in the world. Top companies hire Toptal freelancers for their most important projects.

Interview Questions

1.

If 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?

View answer

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.)

2.

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?

View answer

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.

3.

What is the difference between the DML statement insert and a Database.insert() call?

View answer

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.

Apply to Join Toptal's Development Network

and enjoy reliable, steady, remote Freelance Salesforce Developer Jobs

Apply as a Freelancer
4.

Why do will need Database.Stateful in a batch class?

View answer

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.

5.

Write Apex code to fetch the picklist values from a particular object, e.g. the Display Industry picklist values from a Visualforce page.

View answer
Schema.DescribeFieldResult fieldResult = Account.Industry.getDescribe();
List ple = fieldResult.getPicklistValues();
6.

How many types of sandbox orgs are available with Enterprise Edition? What is the use of each?

View answer

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.
7.

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?

View answer

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.

8.

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.

View answer

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);
9.

What is a wrapper class? Give one use case where you would use a wrapper class.

View answer

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.
10.

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?

View answer

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:

  1. Reduce using global variables if not needed.
  2. 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.
  3. Use filters to avoid storing unnecessary data in List and Map. The heap size mainly increases due to storing data retrieved from a database in a variable. So if data are not necessary then we should clear() them after we finish our use of a particular Map or List.
  4. 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.

There is more to interviewing than tricky technical questions, so these are intended merely as a guide. Not every “A” candidate worth hiring will be able to answer them all, nor does answering them all guarantee an “A” candidate. At the end of the day, hiring remains an art, a science — and a lot of work.

Why Toptal

Tired of interviewing candidates? Not sure what to ask to get you a top hire?

Let Toptal find the best people for you.

Hire a Top Salesforce Developer Now

Our Exclusive Network of Salesforce Developers

Looking to land a job as a Salesforce Developer?

Let Toptal find the right job for you.

Apply as a Salesforce Developer

Job Opportunities From Our Network

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.

* All fields are required

Looking for Salesforce Developers?

Looking for Salesforce Developers? Check out Toptal’s Salesforce developers.

David Tanura

Freelance Salesforce Developer
AustraliaToptal Member Since April 26, 2021

David is a senior Salesforce solution and technical architect able to understand and articulate business and its needs to design and implement solutions built on the platform. Highly aware of business processes, he thrives in adding value by designing and building solutions. Always learning new and complementary technologies and approaches to deliver positive outcomes to the business. His industries include fintech, financial services, pharma, FMCG, property development, and technology.

Show More

Jenn Sanders

Freelance Salesforce Developer
United StatesToptal Member Since June 17, 2019

Jenn is a Salesforce aficionado driven by challenges and good at what she does because she cares. As a 16-year veteran of the Salesforce sphere, she specializes in the intersection of tech, people, and process. Together, she'll build your dreams, overcome your problems, and accelerate your business. Jenn is an architect who builds for scalability, an author who configures for legibility, and an educator who empowers for adoption.

Show More

Gregory Lovelidge

Freelance Salesforce Developer
United StatesToptal Member Since February 26, 2020

Gregory is a driven senior Salesforce consultant and developer with 10+ years of experience seeking remote opportunities. He's adept at formulating technical solutions and executing project plans from conception to completion. He focuses on collaborating closely with clients to identify project objectives, specifications, and solutions.

Show More

Toptal Connects the Top 3% of Freelance Talent All Over The World.

Join the Toptal community.

Learn more