Upload Button Icon Add office photos

Filter interviews by

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
Q2. How to process large amount of data? Which tool would you prefer?
Q3. Given an integer array , and a target k , we need to find the pai ... read more
Q4. How to find if an array has duplicates, in linear time?
Q5. How will a live migration occur in a production database where 10 ... 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

 (32)

 Software Developer

 (24)

 Software Professional

 (1)

 Senior Software Engineer

 (31)

 Software Engineer III

 (30)

 Software Developer Intern

 (4)

 Software Development Engineer

 (4)

 Associate Software Engineer

 (2)

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA questions and some MCQ on Java and Spring

Round 2 - Technical 

(2 Questions)

  • Q1. Longest palindromic substring
  • Ans. 

    A palindromic substring is a string that reads the same forwards and backwards.

    • Use dynamic programming to find the longest palindromic substring.

    • Start by considering each character as the center of a potential palindrome.

    • Expand outwards from each center to check for palindromes of odd and even lengths.

  • Answered by AI
  • Q2. Remove duplicates in place from a 1D array
  • Ans. 

    Remove duplicates from a 1D array of strings in place

    • Iterate through the array and use a HashSet to keep track of unique elements

    • Replace duplicates with null or an empty string to remove them in place

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Project discussion
  • Q2. Search min element in a rotated sorted array with duplicate elements
  • Ans. 

    Search for the minimum element in a rotated sorted array with duplicate elements.

    • Use binary search to find the minimum element in the rotated sorted array.

    • Handle the case where duplicate elements are present by adjusting the search conditions.

    • Consider cases where the array is not rotated or contains only one element.

  • Answered by AI
  • Q3. Ways of declaring singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the application.

    • Declare a private static instance variable of the class

    • Create a private constructor to prevent external instantiation

    • Provide a public static method to access the instance

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Behavioural questions

Skills evaluated in this interview

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

Good question but very simple to answer

Round 2 - Technical 

(2 Questions)

  • Q1. Cooding question
  • Q2. About project you did in colly

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on skill
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Scenerio based questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Linked List Intersection Point
  • Ans. 

    Find the intersection point of two linked lists.

    • Use two pointers to traverse the linked lists

    • Calculate the difference in length between the two lists

    • Move the pointer of the longer list ahead by the difference

    • Move both pointers simultaneously until they meet at the intersection point

  • Answered by AI
  • Q2. Basic Spring Boot
  • Q3. Stream and Java 8 Questions

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Was easy to crack infact was simple

Round 2 - Group Discussion 

Involve group of 8 and related to come and pros

Round 3 - Technical 

(1 Question)

  • Q1. What are software testing techniques
  • Ans. 

    Software testing techniques are methods used to ensure that software applications are functioning correctly and meeting requirements.

    • Black box testing: Testing the functionality of a software application without knowing its internal code.

    • White box testing: Testing the internal code and structure of a software application.

    • Unit testing: Testing individual units or components of a software application.

    • Integration testing:...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. System Design Questions, Situation based problems of system design
  • Q2. Data Structure Coding question of HashMap
Round 2 - Technical 

(1 Question)

  • Q1. Again System design, Question from your project and architecture of your project

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

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.4k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
Google Interview Questions
4.4
 • 871 Interviews
DMart Interview Questions
3.9
 • 397 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
View all
Walmart Software Engineer2 Salary
based on 127 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 9 reviews

3.6/5

Rating in categories

2.3

Skill development

3.6

Work-life balance

3.0

Salary

3.1

Job security

2.9

Company culture

2.1

Promotions

2.4

Work satisfaction

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

₹14 L/yr - ₹47 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹23 L/yr - ₹70 L/yr

Software Engineer
781 salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Software Development Engineer 3
254 salaries
unlock blur

₹15.6 L/yr - ₹46 L/yr

Assistant Team Leader
236 salaries
unlock blur

₹1.3 L/yr - ₹5 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