Upload Button Icon Add office photos

Walmart

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Walmart Software Engineer2 Interview Questions and Answers

Updated 16 Dec 2024

Walmart Software Engineer2 Interview Experiences

4 interviews found

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

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sort array containing only 0,1,2.
  • Ans. 

    Use Dutch National Flag algorithm to sort the array in one pass.

    • Initialize three pointers low, mid, high at start, iterate through array

    • If arr[mid] is 0, swap arr[low] and arr[mid], increment low and mid

    • If arr[mid] is 1, increment mid

    • If arr[mid] is 2, swap arr[mid] and arr[high], decrement high

    • Continue until mid crosses high

  • Answered by AI
  • Q2. Hashmap related
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy to medium level questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Spark concept, scala concept
Round 3 - One-on-one 

(1 Question)

  • Q1. Scala questions and problem solving
Round 4 - HR 

(1 Question)

  • Q1. Prepared why are you leaving current organisation

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Design a Order and Cart Page in iOS. The user should be able to o ... read more
Q3. How to process large amount of data? Which tool would you prefer?
asked in PayPal
Q4. Can you describe the system design for the checkout feature on Am ... read more
Q5. Given an integer array , and a target k , we need to find the pai ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between standard ADSO and write optimise DSO. Why do define keys in ADSO.
  • Ans. 

    Standard ADSO is for persistent storage and reporting, while write optimized DSO is for temporary storage. Keys in ADSO are used for data modeling and performance optimization.

    • Standard ADSO is used for persistent storage and reporting, while write optimized DSO is used for temporary storage before loading data to a standard ADSO.

    • Write optimized DSO does not store data persistently, making it suitable for temporary data...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

I was asked 2 questions
max path sum in binary tree and find frequency of elements in sorted array

Round 2 - Coding Test 

2d round was a low level design round where I was asked to design an iterator

Round 3 - HR 

(1 Question)

  • Q1. Was a manager round and final saalry disussion round

Walmart interview questions for designations

 Software Engineer

 (29)

 Software Developer

 (22)

 Senior Software Engineer

 (32)

 Software Engineer III

 (30)

 Software Developer Intern

 (4)

 Associate Software Engineer

 (2)

 Software Engineer II

 (1)

 Staff Software Engineer

 (1)

Interview questions from similar companies

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

Codility Test - 2 Medium LC type questions

Round 2 - One-on-one 

(1 Question)

  • Q1. DS Algo based round with 2 medium LC types questions on string
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Q1 was about ds algo
Round 2 - Technical 

(1 Question)

  • Q1. Q2 was about lld
Round 3 - Technical 

(1 Question)

  • Q1. Q3 was about lld too
Round 4 - Technical 

(1 Question)

  • Q1. Q4 was about hiring manager round, from resume basically
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Was asked a simple question based on recursion
Round 2 - Technical 

(1 Question)

  • Q1. System Design Concepts. Discussion about day to day work on my current job
Round 3 - Technical 

(1 Question)

  • Q1. Detailed system design interview. Was asked a lots of questions about design of current project
Round 4 - Mangerial Round 

(1 Question)

  • Q1. It was more about day to day work responsibilities. Whether I was willing to relocate. And some questions around strengths and weakness
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Data Structures and Algorithms - Easy

Round 2 - Coding Test 

Code a chineese pebble game

Round 3 - System Design 

(2 Questions)

  • Q1. 2 Entities for cross site sale promotion.
  • Ans. 

    Two entities for cross site sale promotion are affiliate marketing platform and customer loyalty program.

    • Affiliate marketing platform: Allows businesses to partner with affiliates who promote their products on their own websites in exchange for a commission.

    • Customer loyalty program: Rewards customers for repeat purchases or other actions, encouraging them to continue shopping with the brand.

  • Answered by AI
  • Q2. Grill on Q1 with questions on security and loop holes. List SPOF and how to fix it.
Round 4 - Technical 

(2 Questions)

  • Q1. Do you want to do a Puzzle round?
  • Q2. Then asks Celebrity problem which I obviously didn't know at that time.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do DSA even if you are a front end engineer. They keep monitoring for +ve signals.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

The interviewer was a team Lead Engineer. He first asked me a few questions about database fundamentals (Cluster Index, Composite Index, ACID, etc). Then he presented me with a coding question on codility (LC Hard String question). He was very helpful during the interview and nudged me towards the right direction when I got stuck.

Interview experience
5
Excellent
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 Resume tips
Round 2 - Coding Test 

Usually medium LC questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Design Snakes and Ladder
  • Ans. 

    Design a snakes and ladder game with a board, dice, and player pieces.

    • Create a game board with squares numbered from 1 to 100.

    • Place snakes and ladders on specific squares to move players up or down.

    • Players roll a dice to move their pieces on the board.

    • The first player to reach square 100 wins the game.

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Walmart Interview FAQs

How many rounds are there in Walmart Software Engineer2 interview?
Walmart interview process usually has 2-3 rounds. The most common rounds in the Walmart interview process are Coding Test, One-on-one Round and HR.
How to prepare for Walmart Software Engineer2 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 Analytics, Computer science, Data Structures, Distribution System and ERP.
What are the top questions asked in Walmart Software Engineer2 interview?

Some of the top questions asked at the Walmart Software Engineer2 interview -

  1. Difference between standard ADSO and write optimise DSO. Why do define keys in...read more
  2. Sort array containing only 0,1...read more
  3. was a manager round and final saalry disussion ro...read more

Recently Viewed

SALARIES

Amec Foster Wheeler

No Salaries

INTERVIEWS

Walmart

No Interviews

SALARIES

Amec Foster Wheeler

REVIEWS

Amec Foster Wheeler

No Reviews

JOBS

Impact Analytics

No Jobs

SALARIES

Aarvee Associates

JOBS

Impact Analytics

No Jobs

LIST OF COMPANIES

Agilent Technologies

Overview

JOBS

Eaton

No Jobs

SALARIES

Amec Foster Wheeler

Tell us how to improve this page.

Walmart Software Engineer2 Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k 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
 • 848 Interviews
Google Interview Questions
4.4
 • 826 Interviews
DMart Interview Questions
3.9
 • 404 Interviews
Cisco Interview Questions
4.1
 • 372 Interviews
View all
Walmart Software Engineer2 Salary
based on 132 salaries
₹9.9 L/yr - ₹36 L/yr
8% more than the average Software Engineer2 Salary in India
View more details

Walmart Software Engineer2 Reviews and Ratings

based on 11 reviews

2.8/5

Rating in categories

2.4

Skill development

2.7

Work-life balance

3.2

Salary

2.4

Job security

2.2

Company culture

1.7

Promotions

2.4

Work satisfaction

Explore 11 Reviews and Ratings
Software Engineer III
1.8k salaries
unlock blur

₹14.5 L/yr - ₹47 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹23 L/yr - ₹70.3 L/yr

Software Engineer
805 salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Software Development Engineer 3
265 salaries
unlock blur

₹15.6 L/yr - ₹46 L/yr

Business Development Associate
227 salaries
unlock blur

₹1.7 L/yr - ₹4.2 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