Upload Button Icon Add office photos

Filter interviews by

Salesforce Sdet Interview Questions and Answers

Updated 3 Dec 2024

Salesforce Sdet Interview Experiences

Interview questions from similar companies

Sdet Interview Questions & Answers

Oracle user image Anonymous

posted on 14 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write selenium code for getting values in a dynamic table
  • Ans. 

    Use Selenium to extract values from a dynamic table

    • Identify the table using its locator (id, class, xpath, etc.)

    • Iterate through the rows and columns of the table to extract values

    • Use Selenium commands like findElements and getText to retrieve the values

    • Handle dynamic content by waiting for elements to be present or visible

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java union of arrays
  • Ans. 

    To find the union of two arrays in Java, use a HashSet to store unique elements from both arrays.

    • Create two arrays of strings.

    • Convert arrays to HashSet to remove duplicates.

    • Combine both HashSets to get the union of arrays.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Regular Expressions related

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with Basics and lots of practice is the key

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Solve sanke and ladder puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - learn DSA

Sdet Interview Questions & Answers

Adobe user image Anonymous

posted on 20 Mar 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Coding practice is a must . DSA concept is a must .

Round 3 - Aptitude Test 

Coding Test 2 which involved a basic array ques . Checked logic ability

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA practice ,confidence , try to think hard . Practice coding .

Interview Questionnaire 

9 Questions

  • Q1. First one was to find position of a box in a particular grid(4*4) boxes were numbered 0 to 15.Questions was also to write test cases and check every possibilty
  • Q2. Second question was card shuffling problem
  • Q3. One question was think how the database design of Facebook could be
  • Q4. And there were few more coding questions on data structures
  • Q5. It was basically 1 question round but that had two parts . one designing the algorithm optimally . And writting and covering all possible scenarios and write test cases for them.It was based on deleting el...
  • Q6. This round covered Data structure based prograaming as well OS concepts on multithreading as well
  • Q7. One question was to design data structures to delete pages from a web server which are no longer in existense and have no link on website .That is pages which have expired and no longer in use and has no r...
  • Q8. One question to desgin lift system and waht whould be the design
  • Q9. This was the last round .Questions based on college projects and training project was asked.A question was asked to design an algorithm for a new type of contact search application of mobile phones

Interview Preparation Tips

Round: Test
Experience: 10 Objective type questions mainly from data structures.Questions on structures,union , trees,graphs etc First question was purely coding in most optimized way and taking care of all conditions possible. Second Question was to write test cases for print server job execution getting print jobs from different hostels of a college. Third question was to design a Data structure for a billing system keeping in mind certain conditions and write a program to generate and store the bills.
Total Questions: 10

College Name: NA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain your day to day Activities
  • Q2. More into role specific question how to run parallels execution
Round 2 - Technical 

(1 Question)

  • Q1. Situation questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare everything that you have mentioned in Resume
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Print missing number in given array
  • Ans. 

    Find and print the missing number in a given array of strings.

    • Convert the array of strings to an array of integers for easier manipulation.

    • Iterate through the array to find the missing number by comparing consecutive elements.

    • Print the missing number once found.

  • Answered by AI
  • Q2. Print string in reverse
  • Ans. 

    Reverse a string in an array of strings

    • Iterate through each string in the array

    • Use a loop to reverse each string character by character

    • Store the reversed strings in a new array

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you manage differences in team
  • Q2. How do you test faulty ATM
  • Ans. 

    To test a faulty ATM, simulate various scenarios like card reader failure, cash dispenser malfunction, network connectivity issues, etc.

    • Simulate card reader failure by inserting a damaged card or a card with a magnetic strip issue.

    • Test cash dispenser malfunction by requesting cash withdrawal and observing if the correct amount is dispensed.

    • Check for network connectivity issues by trying to access online banking service...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Given a String contains only 0s, 1s and 2s, count the number of sub strings that have equal number of 0s, 1s, and 2s. Input : str = "0102010" output : 2. Very Hard question is being asked in interview for...
  • Ans. 

    Count the number of substrings with equal number of 0s, 1s, and 2s in a given string.

    • Iterate through the string and maintain counts of 0s, 1s, and 2s encountered so far.

    • Keep track of the counts in a hashmap and increment the count of substrings whenever counts of 0s, 1s, and 2s are equal.

    • Return the total count of substrings at the end.

  • Answered by AI
  • Q2. Group of anagrams together. input : ["eat", "tea", "tan", "ate", "nat", "bat"] output : [["eat" ,"tea", "ate"],["tan", "nat"],["bat"]] This is another hard level question is asked in interview for the QA p...
  • Ans. 

    Group anagrams together in an array of strings.

    • Create a hashmap to store sorted strings as keys and corresponding anagrams as values.

    • Iterate through the input array, sort each string, and add it to the hashmap.

    • Return the values of the hashmap as the grouped anagrams.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Frequency array, java collection, missing number

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apitude test with aputide questions without options (Non-mcq's) 15 questions they were asked. and also 10 c++ coding questions asked.

Round 2 - Coding Test 

I a not shortlisted for the secomd round

Salesforce Interview FAQs

How many rounds are there in Salesforce Sdet interview?
Salesforce interview process usually has 1 rounds. The most common rounds in the Salesforce interview process are Coding Test.
How to prepare for Salesforce Sdet 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 Automation, Business Analysis, Cloud Computing, Eclipse and HTML.

Tell us how to improve this page.

People are getting interviews through

based on 1 Salesforce interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Sdet Interview Questions from Similar Companies

TCS Sdet Interview Questions
3.7
 • 4 Interviews
Oracle Sdet Interview Questions
3.7
 • 3 Interviews
Accenture Sdet Interview Questions
3.9
 • 2 Interviews
Infosys Sdet Interview Questions
3.7
 • 2 Interviews
Google Sdet Interview Questions
4.4
 • 2 Interviews
Adobe Sdet Interview Questions
4.0
 • 1 Interview
View all
Technical Support Engineer
851 salaries
unlock blur

₹12 L/yr - ₹24 L/yr

Technical Consultant
300 salaries
unlock blur

₹13.8 L/yr - ₹30 L/yr

Member Technical Staff
262 salaries
unlock blur

₹18.8 L/yr - ₹60 L/yr

Senior Member of Technical Staff
241 salaries
unlock blur

₹25 L/yr - ₹100.4 L/yr

Salesforce Developer
232 salaries
unlock blur

₹6.9 L/yr - ₹27 L/yr

Explore more salaries
Compare Salesforce with

SAP

4.2
Compare

Zoho

4.3
Compare

Oracle

3.7
Compare

Adobe

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview