Upload Button Icon Add office photos

Walmart

Compare button icon Compare button icon Compare

Filter interviews by

Walmart Software Developer Interview Questions, Process, and Tips for Freshers

Updated 28 Feb 2025

Top Walmart Software Developer 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
  • Q2. 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. Expla ...read more
  • Q3. 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 ...read more
View all 7 questions

Walmart Software Developer Interview Experiences for Freshers

6 interviews found

Software Developer Interview Questions & Answers

user image Abhinav Anand

posted on 25 May 2024

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

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

Round 1 - Coding Test 

Easy: 20 MCQs and 2 Coding question of easy difficulty.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Reverst linkedlist in group K 2. String manipulation ques 3. SQL ques on dense rank
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 

2 qns. Dp and backtracking. Problems were medium level.

Round 3 - One-on-one 

(1 Question)

  • Q1. Sql, big data, one coding question , os concepts.
Round 4 - HR 

(1 Question)

  • Q1. How will u see you after 5 years. Why walmart. Is sql better or firebase better.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well.

Software Developer Interview Questions Asked at Other Companies for undefined

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
Q2. Find Duplicate in Array Problem Statement You are provided with a ... read more
Q3. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in Mr Cooper
Q5. Connect Ropes Problem Statement Given a number of ropes denoted a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Coding Test 

Multiple choice + leetcode medium

Round 2 - Technical 

(1 Question)

  • Q1. Take home project, with APIs fetch etc.
  • Ans. 

    Develop a take home project involving fetching data from APIs

    • Create a project that fetches data from a public API such as weather forecast or news articles

    • Use libraries like Axios or Fetch API to make API calls

    • Display the fetched data in a user-friendly interface

    • Implement error handling for failed API calls

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. System design - Curb side pickup
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 

Question about basic engineering subjects and coding

Round 3 - Technical 

(2 Questions)

  • Q1. Interview about technical question
  • Q2. Fabinocci series,trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your projects, coding skills, speaking skills

Walmart interview questions for designations

 Software Developer Intern

 (4)

 Senior Software Developer

 (1)

 Software Developer II

 (1)

 Software Developer 1

 (1)

 Software Engineer

 (29)

 Software Engineer2

 (4)

 IOS Developer

 (3)

 Java Developer

 (2)

I was interviewed 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

Get interview-ready with Top Walmart Interview Questions

I was interviewed 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

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Exception Handling & other Core Java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Search & Contact recruiters who hire for ur domain on LinkedIn & share ur resume with them, search relevant jobs on LinkedIn & apply.

Go to companies' websites & create ur profile.

Update ur profile daily on naukri. 👍🏻

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Related to job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview was good. most of the questions they have asked basics of SQL, SSIS transformations etc.

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Preparation Tips

Round: written test
Experience: it was elitmus test conducted by the company itself on campus. As per my knowledge only those scoring 90 percentile got selected for round 2.
Tips: Attempt only those ques that are necessary for scoring 90+ in e litmus. Specially in verbal don't attempt more then required questions, though you might be tempted. The aim is not to score max bt to score 90+

Round: Technical Interview
Experience: This was a programming based round. I was asked to write algorithms for various array linked list based problems. There was cross questioning prompting to reduce complexity and to use different data structures for same problems.

Mostly it focused on subjects like c, data structures and ADA.
Tips: Be clear with basic of data structures and algorithms. Pointers, queue, stacks, array linked lists, sorting etc are the keywords.

Round: Technical Interview
Experience: This was a information security specific round since that was my major. In depth cross questioning on my thesis topics, honeypots, network intrusion etc. Security certificates, and on the go problems to provide security solution layer wise in different scenarios. Security concept of torrents was also asked in detail.
Tips: It was more of a security discussion and throwing of ideas about how things in a particular case could work or could not. Don't worry about right or wrong answer just be clear with your reasoning about the solution you are suggesting.

Round: Other Interview
Experience: I don't know what to name this round, but it focused mainly on developing test cases for an object. Say they gave me a stapler and said to develop a test plan listing down test cases for a given object to pass so that it can be confirmed that it is a stapler. Another scenario was with a lift.
Tips: This is one round where your presence of mind and inter personal skills matter. I think the way you present your thoughts was most important here.

Round: Behavioural Interview
Experience: This was was mostly about how would you react in a given professional situation
Like your assigned work could not be completed on time, or if you are doing something wrong with the work assigned.
Tips: This is all about inter personal skills and putting your best foot forward :)

College Name: Indira Gandhi Delhi Technical University For Women, Delhi

Walmart Interview FAQs

How many rounds are there in Walmart Software Developer interview for freshers?
Walmart interview process for freshers usually has 3 rounds. The most common rounds in the Walmart interview process for freshers are Coding Test, Technical and Resume Shortlist.
How to prepare for Walmart Software Developer 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 Business operations, Computer science, Data Structures, GCP and HTML.
What are the top questions asked in Walmart Software Developer interview for freshers?

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

  1. Take home project, with APIs fetch e...read more
  2. I have completed my intermediate in Narayanganj junior college in tirup...read more
  3. I have studied in nice English medium school In VarAdaiahpa...read more
How long is the Walmart Software Developer interview process?

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

Tell us how to improve this page.

Walmart Software Developer Interview Process for Freshers

based on 3 interviews

2 Interview rounds

  • Coding Test Round - 1
  • Coding Test Round - 2
View more
Walmart Software Developer Salary
based on 202 salaries
₹12.3 L/yr - ₹42 L/yr
215% more than the average Software Developer Salary in India
View more details

Walmart Software Developer Reviews and Ratings

based on 34 reviews

4.1/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.9

Salary

4.3

Job security

4.0

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 34 Reviews and Ratings
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
801 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 3
260 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Associate
243 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