Upload Button Icon Add office photos

Salesforce

Compare button icon Compare button icon Compare

Filter interviews by

Salesforce Softwaretest Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was good , there was merge intervals questions , and 1 hard questions

Round 2 - Technical 

(2 Questions)

  • Q1. Merge intervals
  • Q2. Hard question tough to answer

Interview Preparation Tips

Interview preparation tips for other job seekers - revise hard questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Indeed and was interviewed before Aug 2022. There were 3 interview rounds.

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

(1 Question)

  • Q1. Write a program to mirror the pixel in a screen matrix of 24 bit pixels
  • Ans. 

    Program to mirror the pixel in a screen matrix of 24 bit pixels

    • Create a 2D array to represent the screen matrix of pixels

    • Iterate through each row and swap the pixels from left to right

    • Ensure to handle the 24 bit pixels properly for mirroring

    • Example: [[255, 0, 0], [0, 255, 0], [0, 0, 255]] -> [[0, 0, 255], [0, 255, 0], [255, 0, 0]]

  • Answered by AI
Round 3 - Coding Test 

3 rounds of coding problems in c++ from various disciplines some relatively easy and some hard

Interview Preparation Tips

Interview preparation tips for other job seekers - Do a lot of leetcode

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2023. There were 4 interview rounds.

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 

Leetcode hard 2 questions cat chicken problem

Round 3 - One-on-one 

(1 Question)

  • Q1. Leet code hard level questions
Round 4 - Coding Test 

Leetcode hard lld questions and mr round

Interview Preparation Tips

Interview preparation tips for other job seekers - Grind leetcode and focus on design and project
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

You better prepare for dynamic programming

Round 3 - Technical 

(2 Questions)

  • Q1. Dynamic programming langeuage
  • Q2. What is the max sub array?
  • Ans. 

    Max sub array refers to the contiguous subarray within an array that has the largest sum of elements.

    • Max sub array problem is a common algorithmic problem in computer science.

    • It involves finding the subarray with the largest sum of elements.

    • Example: Given array [1, -2, 3, 4, -1, 2, 1, -5, 4], the max sub array is [3, 4, -1, 2, 1] with a sum of 9.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - BE prepare to do many dynamic programming questions because it will get you. And many of graphs problems because it widely used all over.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

That was very basic round and it was so easy

Round 2 - Coding Test 

Two question are given one from LinkedList and second was from Dynamic Programming

Interview Preparation Tips

Topics to prepare for Google Softwaretest Engineer interview:
  • Linkedlist
  • binary search
Interview preparation tips for other job seekers - Study hard and be prepare for the test
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

A standardized assessment that measures a person's skills, cognitive abilities, and potential to perform in a specific role.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview questions at Automatic Data Processing (ADP) may cover topics such as programming, databases, and software development.
  • Q2. They may also ask about problem-solving and how you approach challenging tasks.
  • Q3. Emphasize a structured method that involves clearly defining the issue, gathering relevant information, brainstorming potential solutions, evaluating options carefully, implementing the chosen solution, an...
  • Q4. Data structures, algorithms, SQL querying, object-oriented programming principles, software development lifecycle, database concepts (relational vs. NoSQL), coding challenges in relevant languages (like Py...
Round 3 - HR 

(2 Questions)

  • Q1. May ask about your background, skills, and how you handle challenges
  • Q2. Background questions Tell me about yourself, What are your career goals, What are your strengths and weaknesses, What do you know about ADP, and Why do you want to work at ADP.

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tailoring your resume and cover letter to each role, thoroughly researching companies and potential interview questions, actively networking, attending career fairs, practicing your interview skills, following up after interviews, and maintaining a strong online presence on platforms like LinkedIn.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Written test on DSA - 3 questions on hackerrank

Round 2 - Coding Test 

F2F interview on DSA + automation

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

I applied via AmbitionBox and was interviewed in Aug 2023. There were 3 interview rounds.

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

(3 Questions)

  • Q1. DSA algorithms, trees, tries, linked list
  • Q2. Questions on graphs
  • Q3. Question on dynamic programming
Round 3 - Coding Test 

Data structures and algorithms. Leet code hard level

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

On leetcode based prblm there are questions asked

Round 2 - Technical 

(2 Questions)

  • Q1. What are trees and binary search
  • Ans. 

    Trees are hierarchical data structures with nodes connected by edges. Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Trees are made up of nodes connected by edges, with a root node at the top and leaf nodes at the bottom.

    • Binary search is a divide and conquer algorithm that compares the target value to the middle element of a sorted array.

    • Binary search is efficient fo...

  • Answered by AI
  • Q2. What are graphs
  • Ans. 

    Graphs are data structures that consist of nodes (vertices) connected by edges (links).

    • Graphs can be directed or undirected.

    • Nodes can have attributes or properties.

    • Edges can have weights or labels.

    • Examples of graphs include social networks, road networks, and organizational hierarchies.

  • Answered by AI
Round 3 - Coding Test 

Projects and dsa based round is this

Round 4 - Technical 

(1 Question)

  • Q1. This is very tough rounf
Round 5 - Technical 

(1 Question)

  • Q1. This is also very tough

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Dp questions - longest increasing subsequence
  • Ans. 

    Find the longest increasing subsequence in an array.

    • Use dynamic programming to solve this problem.

    • Iterate through the array and keep track of the longest increasing subsequence ending at each index.

    • Return the maximum length found.

  • Answered by AI
  • Q2. Grapg question - detect a cycle
  • Ans. 

    Detecting a cycle in a graph using depth-first search or Floyd's cycle detection algorithm.

    • Use depth-first search to detect a cycle in a graph by keeping track of visited nodes and checking for back edges.

    • Alternatively, use Floyd's cycle detection algorithm for detecting a cycle in a linked list or graph.

    • Example: For a graph with nodes A, B, C, D and edges (A->B, B->C, C->D, D->A), a cycle is detected when visiting nod...

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Salesforce Softwaretest Engineer Salary
based on 14 salaries
₹9.5 L/yr - ₹32.7 L/yr
287% more than the average Softwaretest Engineer Salary in India
View more details
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
287 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