Upload Button Icon Add office photos

Salesforce

Compare button icon Compare button icon Compare

Filter interviews by

Salesforce Member Technical Staff Interview Questions, Process, and Tips

Updated 29 Mar 2025

Top Salesforce Member Technical Staff Interview Questions and Answers

  • Q1. Buy and Sell Stock Problem Statement Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You ...read more
  • Q2. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Eac ...read more
  • Q3. Longest Happy String Problem Statement Given three non-negative integers X , Y , and Z , determine the longest happy string. A happy string is defined as a string that c ...read more
View all 8 questions

Salesforce Member Technical Staff Interview Experiences

7 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Asked coding question on array medium level.
Round 2 - Technical 

(1 Question)

  • Q1. Asked design related question and coding question and current project architecture etc
Round 3 - Behavioral 

(1 Question)

  • Q1. Techno behavioural question
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - PS dsa system design doing properly will help
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Medium DSA question based on string and sliding window algorithm
Round 2 - Technical 

(1 Question)

  • Q1. 2 Medium DSA Questions - 1 was based on using heaps (both min and max) - 1 was based on binary search with using few other optimisations
Round 3 - Technical 

(1 Question)

  • Q1. LLD Round - Based on Designing HashMap
Round 4 - Behavioral 

(1 Question)

  • Q1. Couple of behavioural questions and small discussion on one of the projects mentioned on Resume. Was a friendly discussion of around 30 mins.

Member Technical Staff Interview Questions Asked at Other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest ... read more
asked in Salesforce
Q2. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
Q3. Check Permutation Problem Statement Given two strings 'STR1' and ... read more
asked in Salesforce
Q4. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Salesforce
Q5. Longest Happy String Problem Statement Given three non-negative i ... read more

Member Technical Staff Interview Questions & Answers

user image Monika Rajendran

posted on 7 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Sep 2023.

Round 1 - Coding Test 

First round was hacker rank test

Round 2 - Coding Test 

Two coding questions and optimisation and other basic DS and OOPS questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Deep diving into current project works
  • Ans. 

    I am currently working on developing a new feature for our company's website to improve user experience.

    • Researching user feedback and analyzing data to identify areas for improvement

    • Collaborating with designers and developers to create wireframes and prototypes

    • Implementing and testing the new feature to ensure functionality and usability

    • Gathering feedback from users through surveys and usability testing

    • Iterating on the

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Find median using min heap data structure in a stream of numbers
  • Ans. 

    Use two heaps to efficiently find the median in a stream of numbers.

    • Maintain two heaps: a max heap for the lower half and a min heap for the upper half.

    • When a new number arrives, compare it with the max of the lower half (max heap).

    • If it's smaller, add it to the max heap; otherwise, add it to the min heap.

    • Rebalance the heaps if their sizes differ by more than one.

    • The median is the root of the max heap if it has more el...

  • Answered by AI
  • Q2. In depth discussion on resume

Salesforce interview questions for designations

 Member Technical

 (1)

 Senior Member of Technical Staff

 (2)

 Technical Staff Member Lead

 (2)

 Senior Technical Staff Member

 (1)

 Senior Member Technical

 (2)

 Senior Technical Staff Member 1

 (2)

 Staff Engineer

 (1)

 Technical Consultant

 (6)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Leetcode Easy to Medium

Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. Leetcode Medium
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about how to deal with challenges while working in a team

Get interview-ready with Top Salesforce Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Just basic screening questions about package and notice period
Round 2 - Coding Test 

Hackerrank coding round asking me to wite a trigger that performed some functionality

Round 3 - Technical 

(1 Question)

  • Q1. This was an architectural round going through business case scenario and various ways it could be solved
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a managerial round mostly around behavioural questions.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Online coding assessment having 20 MCQs and 2 coding questions

  • Q1. 

    Spiral Matrix Problem Statement

    You are given a N x M matrix of integers. Your task is to return the spiral path of the matrix elements.

    Input

    The first line contains an integer 'T' which denotes the nu...
  • Ans. 

    The task is to return the spiral path of elements in a given matrix.

    • Iterate through the matrix in a spiral path by keeping track of boundaries.

    • Print elements in the order of top row, right column, bottom row, and left column.

    • Continue the spiral path until all elements are printed.

  • Answered by AI
  • Q2. 

    Longest Happy String Problem Statement

    Given three non-negative integers X, Y, and Z, determine the longest happy string. A happy string is defined as a string that contains only the letters 'a', 'b', and...

  • Ans. 

    The longest happy string problem involves constructing a string with 'a', 'b', and 'c' without having any three consecutive letters being the same.

    • Determine the maximum number of times 'a', 'b', and 'c' can appear in the string based on the given input values.

    • Construct the longest happy string by alternating between 'a', 'b', and 'c' while respecting the constraints.

    • Return '1' if a correct happy string can be formed, o

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The first interview round was fairly easy, and the interviewer was very helpful. It was an hour long interview.

  • Q1. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the array of stock prices to find the maximum profit that can be achieved by buying and selling stocks at different points.

    • Keep track of the maximum profit that can be achieved by considering all possible combinations of buy and sell transactions.

    • Ensure that y...

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • Use Floyd's Cycle Detection Algorithm for efficient detection of cycles in linked lists.

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was a long interview, although the interviewer was again very friendly. The main focus was on problem solving in this round too.

  • Q1. 

    Minimum Swaps to Sort Array Problem Statement

    Given an array arr of size N, determine the minimum number of swaps required to sort the array in ascending order. The array consists of distinct elements onl...

  • Ans. 

    The minimum number of swaps required to sort an array of distinct elements in ascending order.

    • Use a hashmap to store the index of each element in the array.

    • Iterate through the array and swap elements to their correct positions.

    • Count the number of swaps needed to sort the array.

  • Answered by AI
  • Q2. 

    Optimal Strategy for a Coin Game

    You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line.

    Here are the rules of the game:

    1. Each coin has a value associated wit...
  • Ans. 

    The problem involves finding the optimal strategy to accumulate the maximum amount in a coin game with specific rules.

    • Start by considering the base cases where there are only 1 or 2 coins.

    • Use dynamic programming to keep track of the maximum amount that can be won at each step.

    • Consider the different scenarios when choosing a coin from either end of the line.

    • Keep track of the total winnings for both players and choose th...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASalesforce interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, OOPS, Web DevelopmentTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve questions in each topic and make sure to note down important concepts for quick review
Tip 2 : Practice specifically for interviews too by solving questions asked previously in top firms 
Tip 3 : Pay utmost importance to your projects

Application resume tips for other job seekers

Tip 1 : Put links for your projects on resume
Tip 2 : Strictly one page, with only relevant points

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Some tips for your exam

I applied via Campus Placement and was interviewed in Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy

Round 2 - Coding Test 

Easy questions

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is important which helps to crack zoho

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Maths,reasoning and Java questions

Round 2 - Group Discussion 

1. Program on lift technology

Round 3 - Technical 

(1 Question)

  • Q1. C program on pallindrome. A riddle. There is 8 matchbox and 7 matchbox are of equal weight and one is having less weight. Find the matchbox with less weight.
Round 4 - HR 

(2 Questions)

  • Q1. Give your introduction.
  • Q2. What is your hobby? Any question you would like to ask?
  • Ans. Always ask about the type of projects company deals with. Or about the work culture.
  • Answered by Monideepa Das

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Maintain good body language.

Salesforce Interview FAQs

How many rounds are there in Salesforce Member Technical Staff interview?
Salesforce interview process usually has 3-4 rounds. The most common rounds in the Salesforce interview process are Technical, Coding Test and Behavioral.
How to prepare for Salesforce Member Technical Staff interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Salesforce. The most common topics and skills that interviewers at Salesforce expect are Salesforce, CRM, Python, Troubleshooting and Automation.
What are the top questions asked in Salesforce Member Technical Staff interview?

Some of the top questions asked at the Salesforce Member Technical Staff interview -

  1. Find median using min heap data structure in a stream of numb...read more
  2. Deep diving into current project wo...read more
  3. 2 Medium DSA Questions - 1 was based on using heaps (both min and max) - 1 was ...read more

Tell us how to improve this page.

Salesforce Member Technical Staff Interview Process

based on 6 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
Salesforce Member Technical Staff Salary
based on 288 salaries
₹18.8 L/yr - ₹60 L/yr
195% more than the average Member Technical Staff Salary in India
View more details

Salesforce Member Technical Staff Reviews and Ratings

based on 22 reviews

3.2/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.9

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 22 Reviews and Ratings
Technical Support Engineer
976 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Technical Consultant
344 salaries
unlock blur

₹13.8 L/yr - ₹32 L/yr

Member Technical Staff
288 salaries
unlock blur

₹18.8 L/yr - ₹60 L/yr

Senior Member of Technical Staff
256 salaries
unlock blur

₹30 L/yr - ₹95 L/yr

Senior Technical Consultant
251 salaries
unlock blur

₹18 L/yr - ₹45 L/yr

Explore more salaries
Compare Salesforce with

SAP

4.2
Compare

Zoho

4.3
Compare

Oracle

3.7
Compare

Adobe

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview