Upload Button Icon Add office photos

Filter interviews by

Walmart Labs Interview Questions, Process, and Tips

Updated 11 Jan 2025

Top Walmart Labs Interview Questions and Answers

View all 35 questions

Walmart Labs Interview Experiences

Popular Designations

47 interviews found

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

The interview consisted of five rounds, with each round serving as an elimination stage. There were questions regarding the development of a product using a niche market.

Round 2 - Case Study 

There were many questions regarding the Coca-Cola case study.

Round 3 - HR 

(2 Questions)

  • Q1. What were the primary topics discussed during the interview, particularly regarding salary and behavioral questions?
  • Q2. What experiences do you have with negotiating job offers? salary discussion

Associate Product Manager Interview Questions asked at other Companies

Q1. 2. You have water filled Jar X and empty Jar Y. You transferred a portion of water from Jar X to Y using spunch which absorbs A% of water and it pours B% of water in Jar B. After one iteration, Z ml of water is present in Jar Y find water i... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

1 Hour Leetcode style medium difficulty question. Test was taken on hacker rank.

Round 2 - Technical 

(2 Questions)

  • Q1. Computer vision related question on object detections
  • Q2. Question on model training, evaluation etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall easy to medium difficult question.

Senior Data Scientist Interview Questions asked at other Companies

Q1. What is the difference between logistic and linear regression?
View answer (4)

Saoftware Enginner Interview Questions & Answers

user image Anonymous

posted on 11 Jan 2025

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about youself
  • Q2. Software architecture
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Array based question
  • Q2. DP based question
Round 2 - Technical 

(2 Questions)

  • Q1. Internal implementation of HashMap
  • Ans. 

    HashMap is implemented using an array of linked lists to store key-value pairs.

    • HashMap consists of an array of buckets, each containing a linked list of key-value pairs.

    • Hashing function is used to determine the index of the bucket where a key-value pair will be stored.

    • Collision resolution techniques like chaining or open addressing are used to handle collisions.

    • HashMap allows null keys and values, but only one null key

  • Answered by AI
  • Q2. In depth javascript concepts
Round 3 - Behavioral 

(2 Questions)

  • Q1. Project based discussion
  • Q2. Design for a date picker in javascript
  • Ans. 

    A date picker in JavaScript allows users to select a date from a calendar interface.

    • Use HTML input element with type 'date' for modern browsers

    • For older browsers, use a JavaScript library like jQuery UI Datepicker

    • Implement validation to ensure selected date is within acceptable range

  • Answered by AI

Skills evaluated in this interview

Top Walmart Labs Software Engineer III Interview Questions and Answers

Q1. What are the key components of frontend system design?
View answer (1)

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)

Walmart Labs interview questions for popular designations

 Software Engineer

 (12)

 Software Engineer III

 (5)

 Software Developer

 (4)

 Product Manager

 (2)

 Associate Product Manager

 (1)

 Data Engineer

 (1)

 Data Engineer 3

 (1)

 Full Stack Developer

 (1)

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

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

Round 1 - Coding Test 

10 random qs on software things, and 2 qs leetcode style one easy and one easy medium

Interview Preparation Tips

Topics to prepare for Walmart Labs Software Developer Intern interview:
  • DSA

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Get interview-ready with Top Walmart Labs Interview Questions

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Leetcode Medium - Arrays, HashMaps

Top Walmart Labs Software Engineer Interview Questions and Answers

Q1. how to find number of paths in tree such that sum of the values in those nodes will be equal to count?(hint:recursion)
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. They asked knapsack problem
  • Q2. They asked reverse linked list

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square root (decimal)You have been given two integers 'N' and 'D', Your task is to find the square root of the number 'N' with precision up to 'D' decimal places i.e. the difference between your answer and the correct answer should be less ... read more
View answer (2)

Software Engineer III Interview Questions & Answers

user image PRATYUSH PATWA

posted on 22 Jul 2024

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

(2 Questions)

  • Q1. Implement Stack using Queue.
  • Ans. 

    Implement a stack using a queue data structure.

    • Use two queues to simulate a stack.

    • Push operation: Enqueue the element to queue 1.

    • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 2.

    • Top operation: Return the front element of queue 1.

    • Empty operation: Check if both queues are empty.

  • Answered by AI
  • Q2. Use two thread two print From 1 to 10 where Thread A will be for odd and Thread B will be for even.
  • Ans. 

    Use two threads to print numbers 1 to 10, with Thread A printing odd numbers and Thread B printing even numbers.

    • Create two threads, one for odd numbers and one for even numbers

    • Use a shared variable to keep track of the current number being printed

    • Use synchronization mechanisms like mutex or semaphore to ensure proper sequencing of numbers

  • Answered by AI

Skills evaluated in this interview

Top Walmart Labs Software Engineer III Interview Questions and Answers

Q1. What are the key components of frontend system design?
View answer (1)

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find the subarray with given sum.
  • Ans. 

    Find subarray with given sum in an array of integers.

    • Use a sliding window approach to find subarray with sum equal to given sum.

    • Keep track of current sum and adjust window size accordingly.

    • Return the indices of the subarray if found, else return an empty array.

  • Answered by AI
  • Q2. Java concurrency question
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions based on bst
Round 3 - One-on-one 

(1 Question)

  • Q1. Mostly managerial questions

Skills evaluated in this interview

Top Walmart Labs Software Engineer Interview Questions and Answers

Q1. how to find number of paths in tree such that sum of the values in those nodes will be equal to count?(hint:recursion)
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Easy DP questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Write java code for given problem
  • Ans. 

    Java code to find the longest common prefix among an array of strings

    • Create a function that takes in an array of strings as input

    • Initialize a variable to store the longest common prefix

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings

    • Return the longest common prefix

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. About existing project and architecture

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Walmart Labs Interview FAQs

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

Some of the top questions asked at the Walmart Labs interview -

  1. how to find number of paths in tree such that sum of the values in those nodes ...read more
  2. There is 3*3 RUBIX cube, Can you find data structure for solving rubix c...read more
  3. If Redo and Undo operations have to perform, which datastructure can we use?(st...read more
How long is the Walmart Labs interview process?

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

Tell us how to improve this page.

Walmart Labs Interview Process

based on 33 interviews in last 1 year

Interview experience

4.3
  
Good
View more

People are getting interviews through

based on 25 Walmart Labs interviews
Job Portal
Referral
Campus Placement
Company Website
28%
28%
16%
4%
24% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Oracle Interview Questions
3.7
 • 883 Interviews
Google Interview Questions
4.4
 • 837 Interviews
Cisco Interview Questions
4.2
 • 395 Interviews
Adobe Interview Questions
4.0
 • 248 Interviews
Intel Interview Questions
4.3
 • 220 Interviews
View all

Walmart Labs Reviews and Ratings

based on 96 reviews

3.8/5

Rating in categories

3.5

Skill development

3.6

Work-Life balance

3.9

Salary & Benefits

3.8

Job Security

3.5

Company culture

3.0

Promotions/Appraisal

3.3

Work Satisfaction

Explore 96 Reviews and Ratings
Senior Software Engineer
25 salaries
unlock blur

₹14.4 L/yr - ₹50 L/yr

Software Engineer
12 salaries
unlock blur

₹19.3 L/yr - ₹64.1 L/yr

Software Engineer III
10 salaries
unlock blur

₹27.2 L/yr - ₹36 L/yr

Software Developer
5 salaries
unlock blur

₹6.8 L/yr - ₹27 L/yr

Data Scientist
5 salaries
unlock blur

₹24 L/yr - ₹58 L/yr

Explore more salaries
Compare Walmart Labs with

Amazon Development Centre India

4.1
Compare

Flipkart

4.0
Compare

Microsoft Corporation

4.1
Compare

Google

4.4
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