Upload Button Icon Add office photos

Walmart

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Walmart Software Engineer III Interview Questions, Process, and Tips

Updated 7 Feb 2025

Top Walmart Software Engineer III Interview Questions and Answers

  • Q1. What would be the ideal data structure to represent people and friend relations in facebook
  • Q2. Custom implementation of stack where there are two additional methods that return the min and max of the elements in the stack
  • Q3. Given a tree and a node, print all ancestors of Node
View all 31 questions

Walmart Software Engineer III Interview Experiences

30 interviews found

I applied via Approached by Company and was interviewed in Feb 2022. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Given a tree and a node, print all ancestors of Node
  • Ans. 

    Given a tree and a node, print all ancestors of Node

    • Start from the given node and traverse up the tree

    • While traversing, keep track of the parent nodes

    • Print the parent nodes as you traverse up until reaching the root

  • Answered by AI
  • Q2. What would be the ideal data structure to represent people and friend relations in facebook
  • Ans. 

    Graph

    • Use a graph data structure to represent people as nodes and friend relations as edges

    • Each person can be represented as a node with their unique identifier

    • Friend relations can be represented as directed edges between nodes

    • This allows for efficient traversal and retrieval of friend connections

  • Answered by AI
  • Q3. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and change the direction of the pointers

    • Use three pointers to keep track of the previous, current, and next nodes

    • Recursively reverse the linked list

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Code to determine the median of datapoints present in two sorted arrays. Most efficient algo
  • Ans. 

    Code to find median of datapoints in two sorted arrays

    • Use binary search to find the median index

    • Divide the arrays into two halves based on the median index

    • Compare the middle elements of the two halves to determine the median

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

(2 Questions)

  • Q1. Discussion about projects, and previous experience
  • Q2. Custom implementation of stack where there are two additional methods that return the min and max of the elements in the stack
  • Ans. 

    Custom stack with methods to return min and max elements

    • Implement a stack using an array or linked list

    • Track the minimum and maximum elements using additional variables

    • Update the minimum and maximum variables during push and pop operations

    • Implement methods to return the minimum and maximum elements

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Walmart Software Engineer III interview:
  • DSA
  • tree
  • graph
  • linked-list
  • stack
  • DP
  • projects
Interview preparation tips for other job seekers - Need to be strong in intermediate level DSA problems

Focus on being clear about the projects that you did, and your part. Clarity is more important than quantity. Be clear on how you directly contributed to the betterment of the product.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. There are 3 technical rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode medium level questions

Software Engineer III Interview Questions Asked at Other Companies

Q1. Find the highest floor, from where if an egg is dropped will not ... read more
asked in Walmart
Q2. What would be the ideal data structure to represent people and fr ... read more
asked in Walmart
Q3. Custom implementation of stack where there are two additional met ... read more
asked in UST
Q4. =>What is garbage collection in c# =>What is dispose and fi ... read more
asked in Walmart
Q5. Given a tree and a node, print all ancestors of Node
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Coding problems, Spring, DSA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2022. 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 Resume tips
Round 2 - Coding Test 

Data structures and algorithms, leetcode medium level.

Round 3 - Coding Test 

Java with data structures and algorithms round

Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions

Walmart interview questions for designations

 Software Engineer

 (29)

 Senior Software Engineer

 (32)

 Associate Software Engineer

 (2)

 Software Development Engineer

 (1)

 Software Support Engineer

 (1)

 Software Engineer II

 (1)

 Staff Software Engineer

 (1)

 Software QA Engineer

 (1)

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

I applied via Recruitment Consulltant and was interviewed before Mar 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Dynamic programming question
Round 3 - Technical 

(1 Question)

  • Q1. Project related + Rest api + Kubernetes

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA
Good knowledge about project a must. Learn REST , Docker , Kubernetes

Get interview-ready with Top Walmart Interview Questions

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Data Structures, Algorithms
  • Q2. Design a Garbage collector similar to Java Garbage Collector with minimum configurations.
  • Ans. 

    Design a Java-like Garbage Collector with minimal configurations.

    • Choose a garbage collection algorithm (e.g. mark-and-sweep, copying, generational)

    • Determine the heap size and divide it into regions (e.g. young, old, permanent)

    • Implement a root set to keep track of live objects

    • Set thresholds for garbage collection (e.g. occupancy, time)

    • Implement the garbage collection algorithm and test for memory leaks

  • Answered by AI
  • Q3. Microservices and their communication patterns. How is it implemented in your project and why?
  • Ans. 

    Microservices are implemented using RESTful APIs and message brokers for asynchronous communication.

    • RESTful APIs are used for synchronous communication between microservices.

    • Message brokers like Kafka or RabbitMQ are used for asynchronous communication.

    • Microservices communicate with each other using HTTP requests and responses.

    • Each microservice has its own database and communicates with other microservices through APIs...

  • Answered by AI
  • Q4. Which design pattern you follow and why? Show some example.
  • Ans. 

    I follow the MVC design pattern as it separates concerns and promotes code reusability.

    • MVC separates the application into Model, View, and Controller components.

    • Model represents the data and business logic.

    • View represents the user interface.

    • Controller handles user input and updates the model and view accordingly.

    • MVC promotes code reusability and maintainability.

    • Example: Ruby on Rails framework follows MVC pattern.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very specific about your field knowledge. They do strong screening at HM round.

Skills evaluated in this interview

Software Engineer III Jobs at Walmart

View all
Round 1 - Coding Test 

Medium level coding test based on knapsack.

Round 2 - Case Study 

Design Google calendar

Round 3 - Coding Test 

Tranpose a matrix

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck fellas and keep rocking

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Questions related to tree data structure.
  • Q2. Questions related to dynamic programming
  • Q3. Questions related to heap data structure
  • Q4. Questions related to core Java and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Their main focus is on problem solving. So be prepared with data structures and algorithms.

Interview Questionnaire 

1 Question

  • Q1. Technical Online test related to mainframe Batch and cics

I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. K closest points problem. 2. Write an API with external call using feign client. 3. Minimum platform needed for trains problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't hesitate to ask for hints.
Focus on problem solving approach.
Try to solve the naive approach first.
Contribute & help others!
anonymous
You can choose to be anonymous

Walmart Interview FAQs

How many rounds are there in Walmart Software Engineer III interview?
Walmart interview process usually has 2-3 rounds. The most common rounds in the Walmart interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Walmart Software Engineer III 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 Walmart. The most common topics and skills that interviewers at Walmart expect are Information Technology, Monitoring, SQL, Data Structures and Networking.
What are the top questions asked in Walmart Software Engineer III interview?

Some of the top questions asked at the Walmart Software Engineer III interview -

  1. What would be the ideal data structure to represent people and friend relations...read more
  2. Custom implementation of stack where there are two additional methods that retu...read more
  3. Given a tree and a node, print all ancestors of N...read more
How long is the Walmart Software Engineer III interview process?

The duration of Walmart Software Engineer III interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Gushwork

14 jobs

JOBS

Browse jobs

Discover jobs you love

JOBS

GroundTruth

33 jobs

PHOTOS

Growisto

7 office photos

JOBS

Photon Interactive

No Jobs

JOBS

Burns & McDonnell

No Jobs

JOBS

Systechcorp

No Jobs

JOBS

WSP

No Jobs

JOBS

Cyient

No Jobs

JOBS

Walmart

No Jobs

Tell us how to improve this page.

Walmart Software Engineer III Interview Process

based on 31 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • One-on-one Round
  • HR Round
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Google Interview Questions
4.4
 • 823 Interviews
DMart Interview Questions
3.9
 • 401 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
View all
Walmart Software Engineer III Salary
based on 1.8k salaries
₹14.5 L/yr - ₹47 L/yr
16% more than the average Software Engineer III Salary in India
View more details

Walmart Software Engineer III Reviews and Ratings

based on 138 reviews

3.5/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.5

Salary

3.9

Job security

3.2

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 138 Reviews and Ratings
Software Engineer III

Bangalore / Bengaluru

3-6 Yrs

₹ 17.8-43 LPA

Software Engineer III

Bangalore / Bengaluru

3-8 Yrs

₹ 17.8-30.95 LPA

Software Engineer III

Chennai

3-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer III
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
799 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 3
264 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
244 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Walmart with

Amazon

4.1
Compare

Flipkart

4.0
Compare

Microsoft Corporation

4.0
Compare

Google

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