Upload Button Icon Add office photos

Salesforce

Compare button icon Compare button icon Compare

Filter interviews by

Salesforce TSE Interview Questions and Answers

Updated 15 Jan 2025

Salesforce TSE Interview Experiences

3 interviews found

TSE Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Situation based questions. Will provide issue and will ask the troubleshooting methode which we will choose
Round 2 - HR 

(2 Questions)

  • Q1. General HR questions
  • Q2. Salesforce values

TSE Interview Questions & Answers

user image Anonymous

posted on 27 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. More about the admin concept questions
  • Q2. Basic of Dev such as in Apex/ Aura/ Async/ Rest APIs
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why Salesforce?
  • Ans. 

    Salesforce is a leading CRM platform with powerful features and integrations.

    • Salesforce offers a wide range of customizable features for managing customer relationships.

    • It provides seamless integrations with other business tools and platforms.

    • Salesforce has a strong reputation for reliability and security.

    • The platform is constantly evolving with new updates and innovations.

    • Many companies across various industries rely

  • Answered by AI
  • Q2. To know more about the roles

TSE Interview Questions Asked at Other Companies

Q1. How do you Handle pressure of multiple breakdown.
asked in Red Hat
Q2. How to change home directory for new users
Q3. What is customer satisfaction?
Q4. What is customer experience?
asked in Jindal X
Q5. To to sell a insurance? Sell it to me.

TSE Interview Questions & Answers

user image Anonymous

posted on 7 Mar 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Technical interview on apex, lwc

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic c# questions , few logical and angular questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. DB questions, design patterns, few architectural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basics and be concrete on concepts

I applied via Naukri.com and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to your technology.

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical rounds would be based on the interviewer and the difficulty would be from good to higher side.
Would suggest the candidate should represent the actual experience with the interviewer.
Be real and emphasise on the challenges that you faced in your current company and how you handled it. It's not always that you have to show yourself as extra smart or hardworking candidate, do share your failure experiences and how it helped you to identify the reasons for the failures.
Lastly again I would say be real and true to your CV.

I applied via Referral and was interviewed before Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell Us about yourself?
  • Ans. I am from Kolkata. I have convey about my Educational Background to Interviewer.
  • Answered by Tanay Lakshman
  • Q2. Tell us about Coalnet Architecture of MMS Module?
  • Ans. 

    Coalnet Architecture of MMS Module is a system for managing and monitoring coal mines.

    • Coalnet Architecture is designed to manage and monitor coal mines.

    • It includes modules for tracking production, equipment maintenance, and safety.

    • The MMS Module specifically focuses on maintenance management.

    • It allows for scheduling and tracking of maintenance tasks, as well as inventory management.

    • The architecture is scalable and can ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The documentation got approved by Samuel Of Oracle Australia Office.I was interviewed by Samuel by Telephone.Outcome will be Given in Email.It consists of 15 minutes technical interview.

Interview Questionnaire 

2 Questions

  • Q1. There were two technical rounds followed by a managerial and hr round.The first round was highly technical and questions were asked on string data structures, binary search trees and maps.There where sever...
  • Q2. Managerial round will be a formal discussion with the interviewer regarding the role,what roles you have worked in your previous organization, questions might be asked based on your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have some practice of common data structures and algorithms used. From framework side you will asked questions based on your resume and role. And best of luck

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Pretty easy questions.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in an array of distinct integers.

    • Sort the array and return the element at index K-1.

    • Use a min-heap to find the K-th smallest element efficiently.

    • Implement quickselect algorithm for optimal performance.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

1 coding question

  • Q1. 

    IP Address Formation from String

    Given a string S consisting only of digits from 0 to 9, your task is to find all potential IP addresses that can be formed from S and list them in lexicographical order. I...

  • Ans. 

    Given a string of digits, find all potential valid IP addresses that can be formed from it.

    • Split the string into four parts and check if each part is a valid IP segment (0-255).

    • Use backtracking to generate all possible combinations of valid IP addresses.

    • Ensure that the IP address does not contain leading zeroes.

    • Return the valid IP addresses in lexicographical order.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Total Discussion on OS concepts

  • Q1. Can you explain the concepts related to memory management in operating systems?
  • Ans. 

    Memory management in operating systems involves allocation, deallocation, and optimization of memory usage.

    • Memory allocation: OS allocates memory to processes based on their requirements.

    • Memory deallocation: OS frees up memory when it is no longer needed by a process.

    • Memory optimization: OS optimizes memory usage through techniques like paging, segmentation, and virtual memory.

    • Examples: Paging in which memory is divide...

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Easy in office environment

  • Q1. 

    Find the Lone Set Bit

    Your task is to identify the position of the only '1' bit in the binary representation of a given non-negative integer N. The representation contains exactly one '1' and the rest are...

  • Ans. 

    Find the position of the lone '1' bit in the binary representation of a given non-negative integer.

    • Iterate through the bits of the integer to find the position of the lone '1'.

    • Use bitwise operations to check if there is exactly one '1' bit in the binary representation.

    • Return the position of the lone '1' or -1 if there isn't exactly one '1'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria7 CGPAMicrosoft interview preparation:Topics to prepare for the interview - Trees, graphs, dynamic programming, stacks, queuesTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do a good project.
Tip 2 : Master the topics you are preparing.

Application resume tips for other job seekers

Tip 1 : Avoid writing things you do not know
Tip 2 : Follow a proper format for Resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the string and append each character to a new string in reverse order

    • Alternatively, use built-in string functions to reverse the string

    • If the string is stored as an array of characters, swap the first and last elements, then the second and second-to-last elements, and so on until the middle is reached

  • Answered by AI

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Personal projects/client projects
  • Q2. Hashmap/hashtable/hashset
  • Q3. Java and Microservices
  • Q4. Rest and soap
  • Q5. Program on array
  • Ans. 

    Program on array

    • Arrays are used to store multiple values in a single variable

    • Arrays can be of any data type

    • Arrays can be accessed using index numbers

    • Arrays can be sorted and searched

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience

Skills evaluated in this interview

Salesforce Interview FAQs

How many rounds are there in Salesforce TSE interview?
Salesforce interview process usually has 1-2 rounds. The most common rounds in the Salesforce interview process are Technical, One-on-one Round and HR.
What are the top questions asked in Salesforce TSE interview?

Some of the top questions asked at the Salesforce TSE interview -

  1. Situation based questions. Will provide issue and will ask the troubleshooting ...read more
  2. Basic of Dev such as in Apex/ Aura/ Async/ Rest A...read more
  3. More about the admin concept questi...read more

Tell us how to improve this page.

Salesforce TSE Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 863 Interviews
Google Interview Questions
4.4
 • 840 Interviews
Amdocs Interview Questions
3.7
 • 516 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
View all
Salesforce TSE Salary
based on 11 salaries
₹16.2 L/yr - ₹20 L/yr
269% more than the average TSE Salary in India
View more details
Technical Support Engineer
971 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Technical Consultant
343 salaries
unlock blur

₹13.8 L/yr - ₹32 L/yr

Member Technical Staff
283 salaries
unlock blur

₹18.8 L/yr - ₹60 L/yr

Senior Member of Technical Staff
259 salaries
unlock blur

₹30 L/yr - ₹95 L/yr

Senior Technical Consultant
252 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