Upload Button Icon Add office photos

Walmart

Compare button icon Compare button icon Compare

Filter interviews by

Walmart Interview Questions, Process, and Tips for Freshers

Updated 30 Mar 2025

Top Walmart Interview Questions and Answers for Freshers

  • Q1. Nth Fibonacci Number Problem Statement Given an integer 'N', the task is to compute the N'th Fibonacci number using matrix exponentiation. Implement and return the Fibon ...read more
    asked in Software Developer interview
  • Q2. Ways To Make Coin Change Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these ...read more
    asked in Software Developer Intern interview
  • Q3. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most ...read more
    asked in SDE-2 interview
View all 32 questions

Walmart Interview Experiences for Freshers

Popular Designations

43 interviews found

I appeared for an interview in Sep 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Hard

There were 2 coding questions to be solved in 45 minutes. Questions were a bit difficult and topics covered in my set were DP and Graphs.

  • Q1. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    The problem is to color a graph with two colors such that no two connected vertices have the same color.

    • Use a graph coloring algorithm such as Depth First Search (DFS) or Breadth First Search (BFS).

    • Start with an arbitrary vertex and color it with one color (e.g., blue).

    • Color all its adjacent vertices with the other color (e.g., red).

    • Continue this process for all connected components of the graph.

    • If at any point, you en...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

I was asked questions on data structures, OOPs, OS and he grilled me on Machine Learning and Microsoft Azure (as is was mentioned in my resume).

  • Q1. 

    Maximum Frequency Number Problem Statement

    Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.

    If multip...

  • Ans. 

    The program finds the number that occurs the maximum times in an array of integers.

    • Iterate through the array and count the frequency of each number using a dictionary.

    • Keep track of the number with the maximum frequency and its index.

    • Return the number with the maximum frequency and the lowest index.

  • Answered by AI
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

It involved a few technical questions based on my resume followed by leadership questions.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Maharaja Agrasen Institute Of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteriaFemale candidateWalmart interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, Algorithms, Operating SystemTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Do not cram solutions.
Tip 2 : Keep practicing and give contests.

Application resume tips for other job seekers

Tip 1 : Make a 1 pager resume strictly
Tip 2 : Have 3-4 decent projects.

Final outcome of the interviewSelected

Top Walmart Software Developer Intern Interview Questions and Answers

Q1. Ways To Make Coin Change Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the change, the result should be 0.... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Feb 2024

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

SQL, Spark, Hive, Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly SQL Question which include complex joins including two or more tables, job optimisation in scala/spark.

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)

I appeared for an interview in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

This was the online round held at Hackerearth. All students who met the eligibility criteria were shared link for the online test on hackerearth.

  • Q1. 

    Remove Consecutive Duplicates Problem Statement

    Given a string str of size N, your task is to recursively remove consecutive duplicates from this string.

    Input:

    T (number of test cases)
    N (length of the ...
  • Ans. 

    Recursively remove consecutive duplicates from a given string.

    • Use recursion to check for consecutive duplicates in the string.

    • If current character is same as next character, skip the next character.

    • Repeat the process until no consecutive duplicates are found.

  • Answered by AI
  • Q2. 

    Deepest Leaves Sum Problem Statement

    Given a binary tree of integers, your task is to calculate the sum of all the leaf nodes present at the deepest level of this binary tree. If there are no such nodes, ...

  • Ans. 

    Calculate the sum of leaf nodes at the deepest level of a binary tree.

    • Traverse the binary tree to find the deepest level of leaf nodes.

    • Sum the leaf nodes at the deepest level.

    • Handle null nodes represented by -1.

    • Ensure the sum fits within a 32-bit integer.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This Round was DS and Algo round and it started with formal introduction, followed by 2 problems.There were 2 interviewers. We first dicussed the approach the time complexity and proper code covering all cases.

  • Q1. 

    Palindrome Permutation - Problem Statement

    Determine if a permutation of a given string S can form a palindrome.

    Example:

    Input:
    string S = "aab"
    Output:
    "True"
    Explanation:

    The permutation "aba" o...

  • Ans. 

    Check if a permutation of a string can form a palindrome.

    • Create a frequency map of characters in the string.

    • Count the number of characters with odd frequencies.

    • If there is at most one character with odd frequency, return true.

    • Otherwise, return false.

  • Answered by AI
  • Q2. 

    Word Presence in Sentence

    Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word.

    Input:

    The first line contains an in...
  • Ans. 

    Check if a given word is present in a sentence as a complete word.

    • Split the sentence into words using spaces as delimiter.

    • Check if the given word matches any of the words in the sentence.

    • Ensure that the word is not just a substring of another word in the sentence.

  • Answered by AI
Round 3 - HR 

Round duration - 30 mintues
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. Eligibility criteriaAbove 8 CGPA, Any BranchWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Designs, Operating Systems, DBMS, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have atleast one internship/project in your domain...Will help you to gain exposure
Tip 2 : Do good practice of advanced data structures like Tries,graphs etc.
Tip 3 : Be good in your communication

Application resume tips for other job seekers

Tip 1 : Keep your resume up to date and mention three or four good level projects which will give a good impression to the interviewer
Tip 2 : You should be well aware and knowledgeable about all the things that are mentioned in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Walmart Software Developer Interview Questions and Answers

Q1. Nth Fibonacci Number Problem Statement Given an integer 'N', the task is to compute the N'th Fibonacci number using matrix exponentiation. Implement and return the Fibonacci value for the provided 'N'. Note: Since the calculated Fibonacci n... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 31 Jan 2023

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

I applied via Naukri.com and was interviewed before Jan 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 tips
Round 2 - Coding Test 

Program based on string manipulation

Round 3 - Technical 

(1 Question)

  • Q1. Selenium core java related questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager round with hireing manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cam and cool try to give your best if you stuck then they will provide you some hints

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Walmart interview questions for popular designations

 Senior Software Engineer

 (32)

 Software Engineer III

 (30)

 Software Engineer

 (29)

 Software Developer

 (22)

 Data Scientist

 (8)

 Data Engineer

 (8)

 Associate

 (8)

 Analyst

 (6)

Interview Questions & Answers

user image Anonymous

posted on 27 Oct 2021

I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Fiori based questions
  • Q2. Design a whole application in fiori

Interview Preparation Tips

Interview preparation tips for other job seekers - - prepare theory for 1st round
- odata and navigation for coding round

Skills evaluated in this interview

Get interview-ready with Top Walmart Interview Questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Apna Jobs and was interviewed before Jan 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. General Questions Knowledge of Excel
  • Q2. About creating Charts & Pivot tables in Excel.

Interview Preparation Tips

Interview preparation tips for other job seekers - You have to be cautious with management. They won't respond with your personal issues. Other than Management remaining workers on floor are good with you.

Floor Associate Interview Questions asked at other Companies

Q1. Any marketing experience
View answer (1)

Jobs at Walmart

View all

I applied via Referral and was interviewed before Nov 2021. There were 2 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 - One-on-one 

(5 Questions)

  • Q1. Where do you work before?
  • Q2. What is the job role in the previous company?
  • Q3. What is your salery package in the previous company?
  • Q4. This is the job role of this company are you ok with it?
  • Q5. Why are getting out of you previous company is their any issues?

Interview Preparation Tips

Topics to prepare for Walmart Business Development Associate interview:
  • Sales
Interview preparation tips for other job seekers - Be confident don't get fear just prove them with your confidence that you can do any type of hard work by that they can get some confidence on you.

Business Development Associate Interview Questions asked at other Companies

Q1. You are going to the office and you saw a 6 years old poor guy selling pencils. Out of kindness you bought all the pencils(100 pcs) at Rs. 50 and gave him extra Rs. 50 to support his family. Since you don't require those pencils at all. Wha... read more
View answer (44)

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Hard

Round was held in the morning probably 10 or 11 am, the test window was open for 90 minutes and one can give the test anytime in that 1.5 hour.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the number of ways to make change for each value using different denominations.

    • Initialize the base cases and then iterate through the denominations to fill up the array.

    • The final answer will be in the last cell of the array corre

  • Answered by AI
  • Q2. 

    Duplicate Integer in Array

    Given an array ARR of size N, containing each number between 1 and N-1 at least once, identify the single integer that appears twice.

    Input:

    The first line contains an integer...
  • Ans. 

    Identify the duplicate integer in an array of size N containing numbers between 1 and N-1.

    • Iterate through the array and keep track of the frequency of each element using a hashmap.

    • Return the element with a frequency greater than 1 as the duplicate integer.

    • Ensure the constraints are met and a duplicate number is guaranteed to be present in the array.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

This round was scheduled on 12th Nov, almost after 30 days of the previous technical round. I got the confirmation of passing the previous round on 10th Nov and was asked to appear in this final round which was scheduled on 15th Nov at 11:00 am in the morning and it was going to be an HR round which probably was my favourite among all the other rounds. I prepared for the same by reading interview experiences available at coding ninjas.

  • Q1. 

    Validate Binary Search Tree (BST)

    You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).

    BST Definition:

    A Binary Search Tr...

  • Ans. 

    Validate if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Check if the right subtree of a node contains only nodes with data greater than the node's data.

    • Recursively check if both the left and right subtrees are also binary search trees.

    • Example: For each node, ensure all nodes in its left subtree are less and all node

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7 cgpa, no current backlogsWalmart interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Arrays, Linked list, stack, queue, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : practice on codeforces and codechef
Tip 2 : prepare a good resume 
Tip 3 : may prefer solving the SDE sheet provided by striver_79

Application resume tips for other job seekers

Tip 1 : put your entire valuable experience in brief
Tip 2 : try to put those things that really attracts the recruiter, will be better if your past experiences relates to the company

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Walmart Software Developer Intern Interview Questions and Answers

Q1. Ways To Make Coin Change Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the change, the result should be 0.... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The platform was HackerEarth time duration was 1 hour.
1.) 25 MCQs (Both Easy and Gate Level Based) 
2.) 1 Coding Question, that needs to be solved in O(logn) time. Program for Fibonacci numbers. The basic idea behind that question is we need to crack the pattern and then based on constraints we need to solve it.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Given an integer 'N', the task is to compute the N'th Fibonacci number using matrix exponentiation. Implement and return the Fibonacci value for the provided 'N'.

    N...
  • Ans. 

    Use matrix exponentiation to efficiently compute the Nth Fibonacci number modulo 10^9 + 7.

    • Implement matrix exponentiation to calculate Fibonacci numbers efficiently.

    • Use the formula F(n) = F(n-1) + F(n-2) with initial values F(1) = F(2) = 1.

    • Return the result modulo 10^9 + 7 to handle large Fibonacci numbers.

    • Optimize the solution to achieve better than O(N) time complexity.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was a technical round. The platform was Zoom time duration was 40 mins. Started with Tell me something about yourself.
 

  • Q1. 

    Similar Strings Problem Statement

    Determine whether two given strings, A and B, both of length N, are similar by returning a 1 if they are, otherwise return a 0.

    Explanation:

    String A is similar to stri...

  • Ans. 

    Determine if two strings are similar based on given conditions.

    • Check if the strings are equal first.

    • Then check if the strings can be divided into two halves with similar patterns.

    • Return 1 if the strings are similar, 0 otherwise.

  • Answered by AI
Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Medium

The platform was Zoom time duration was 1 hour 45 mins. Started with Tell me something about yourself. I told them, that I like solving algorithms, so she was like let’s start with trees then.

 

Round 4 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

This was a Hiring Manager Round. The platform was Zoom time duration was 30 mins. Started with Tell me something about yourself.


 

Round 5 - HR 

Round duration - 20 minutes
Round difficulty - Easy

The platform was Zoom time duration was 20 mins. Asked me to give my introduction.

 

Interview Preparation Tips

Eligibility criteriaNo criteriaWalmart interview preparation:Topics to prepare for the interview - Data Structures, Aptitude, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Don't stick to a single topic too much. Cover all and prepare short notes for all the topics so it will be easier for revision. 
Tip 2 : Do projects so that they will be an added weightage.
Tip 3 : Practice a minimum of 100 questions on that particular topic so that it will be easy to crack within no time.

Application resume tips for other job seekers

Tip 1 : Projects add good weight to the resume. So the interviewer asks the questions based on that.
Tip 2 : Resume should be genuine. You have to be confident of whatever is written in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Walmart Software Developer Interview Questions and Answers

Q1. Nth Fibonacci Number Problem Statement Given an integer 'N', the task is to compute the N'th Fibonacci number using matrix exponentiation. Implement and return the Fibonacci value for the provided 'N'. Note: Since the calculated Fibonacci n... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I applied via Naukri.com and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS/Algo question leetcode medium
  • Q2. Working code with edge cases.
  • Ans. 

    Working code with edge cases is code that has been tested with extreme inputs to ensure it functions correctly.

    • Edge cases are inputs that are unlikely to occur but can cause unexpected behavior if not handled properly.

    • Examples of edge cases include empty inputs, null values, and inputs at the limits of the data type's range.

    • Working code with edge cases should be thoroughly tested to ensure it functions correctly in all

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be authentic with your knowledge.
Core basic should be strong.
Should be ready for tricky questions.

Top Walmart Senior Software Engineer Interview Questions and Answers

Q1. Find All Anagrams Problem Statement Given a string STR and a non-empty string PTR, identify all the starting indices of anagrams of PTR within STR. Explanation: An anagram of a string is another string that can be rearranged using exactly t... read more
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Walmart Interview FAQs

How many rounds are there in Walmart interview for freshers?
Walmart interview process for freshers usually has 2-3 rounds. The most common rounds in the Walmart interview process for freshers are Technical, One-on-one Round and Coding Test.
How to prepare for Walmart interview for freshers?
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 Monitoring, Information Technology, Analytics, Computer science and Open Source.
What are the top questions asked in Walmart interview for freshers?

Some of the top questions asked at the Walmart interview for freshers -

  1. How can improve the sales and marketing what is your projection What is the rep...read more
  2. Write a for loop in cpp to print n natural numbers without using semicolon ...read more
  3. what do think about women's educati...read more
How long is the Walmart interview process?

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

Tell us how to improve this page.

Walmart Interview Process for Freshers

based on 24 interviews

Interview experience

4.1
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Walmart

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
DMart Interview Questions
3.9
 • 410 Interviews
Vishal Mega Mart Interview Questions
3.7
 • 160 Interviews
Croma Interview Questions
4.0
 • 133 Interviews
Lowe's Interview Questions
4.1
 • 129 Interviews
Reliance Digital Interview Questions
4.1
 • 124 Interviews
Reliance Trends Interview Questions
4.2
 • 106 Interviews
JioMart Interview Questions
3.9
 • 94 Interviews
MedPlus Interview Questions
3.6
 • 82 Interviews
Future Group Interview Questions
4.3
 • 78 Interviews
View all

Walmart Reviews and Ratings

based on 2.5k reviews

3.7/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.7

Salary

3.7

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 2.5k Reviews and Ratings
STAFF, SOFTWARE ENGINEER (Full Stack)

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

STAFF, SOFTWARE ENGINEER

Bangalore / Bengaluru

11-15 Yrs

Not Disclosed

STAFF, DATA SCIENTIST

Bangalore / Bengaluru

9-14 Yrs

Not Disclosed

Explore more jobs
Software Engineer III
1.9k salaries
unlock blur

₹14.5 L/yr - ₹47 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹19 L/yr - ₹70 L/yr

Software Engineer
800 salaries
unlock blur

₹10.2 L/yr - ₹43 L/yr

Software Development Engineer 3
307 salaries
unlock blur

₹15.6 L/yr - ₹46 L/yr

Software Developer
298 salaries
unlock blur

₹12 L/yr - ₹46 L/yr

Explore more salaries
Compare Walmart with

Amazon

4.0
Compare

Reliance Retail

3.9
Compare

DMart

3.9
Compare

Future Group

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