Upload Button Icon Add office photos

Walmart

Compare button icon Compare button icon Compare

Filter interviews by

Walmart Software Development Engineer Intern Interview Questions and Answers

Updated 4 Jul 2024

Walmart Software Development Engineer Intern Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Some basic core subject question

Round 2 - Coding Test 

Level was good you have to practise on codeforces

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Programming question on Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared yourself for more technical
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

I like to choose topics java, c, python, html etc

Round 2 - Coding Test 

About java, python, c, c++, html and about coding language

Round 3 - Group Discussion 

Hoe to built skill discussion about problem and how solve it

Interview Preparation Tips

Interview preparation tips for other job seekers - i am fresher here so i don't want to give any tips to any one
Interview experience
4
Good
Difficulty level
Easy
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 tips
Round 2 - Aptitude Test 

Two DSA ques were asked. One easy and one medium.

Round 3 - Technical 

(1 Question)

  • Q1. Project discussion and some DSA ques
Round 4 - HR 

(1 Question)

  • Q1. Standard hr question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 2 DS questions, 1 SQL question
  • Q2. Details of projects worked, containerization, APIs
  • Ans. 

    I have worked on multiple projects involving containerization and developing APIs.

    • Developed microservices using Docker containers for easy deployment and scalability

    • Created RESTful APIs using Node.js and Express framework

    • Integrated third-party APIs for data retrieval and processing

    • Utilized Kubernetes for container orchestration and management

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Python - ML/DS pipeline
  • Q2. Java- Springboot framework

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Questions about JavaScript, different types of DataTypes,
  • Q2. Write code to add elements dynamically
  • Ans. 

    Adding elements dynamically to an array in code

    • Use push() method to add elements to an array in JavaScript

    • In Python, use append() method to add elements to a list

    • In Java, use ArrayList and add() method to dynamically add elements

  • Answered by AI
  • Q3. What is Hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Variable and function declarations are hoisted to the top of their scope during the compilation phase.

    • Only the declarations are hoisted, not the initializations.

    • Function declarations take precedence over variable declarations when hoisted.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Current CTC, Experience
  • Q2. What is expected CTC
  • Ans. 

    Expected CTC should be based on industry standards, experience, skills, and location.

    • Research industry standards for Software Engineer salaries

    • Consider your experience level and skills when determining expected CTC

    • Take into account the cost of living in the location of the job

    • Negotiate based on the job responsibilities and market demand

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Passionate about learning new technologies and solving complex problems

  • Answered by AI
  • Q2. Sort the array in one loop
  • Ans. 

    Use quicksort algorithm to sort array in one loop

    • Use quicksort algorithm to partition array and sort elements

    • Choose a pivot element and rearrange elements around pivot in one loop

    • Repeat process for subarrays until entire array is sorted

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Its a normal questions which usually service based company asked
  • Q2. Overall it is good
Round 2 - Case Study 

Ask you to implement any solution like caching using LRU or LFU

Round 3 - Assignment 

Its a manager round where they discuss about u=your past experiences and also they tell you about the project

Round 4 - HR 

(2 Questions)

  • Q1. I think they gave you only based on your previous offer.
  • Q2. Negotiate well with them . Don't accept just for the sake of an offer because further they will not change it until/ unless it is filling position.
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 Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Immutable Class, Remove duplicates from string using java 8
  • Ans. 

    Immutable class, remove duplicates from string using Java 8

    • Create an immutable class to represent the string

    • Use Java 8 streams to remove duplicates from the string

    • Convert the string to a character array, use distinct() and collect() to remove duplicates

  • Answered by AI
  • Q2. Sealed classes in java
  • Ans. 

    Sealed classes in Java restrict inheritance to a predefined set of subclasses.

    • Sealed classes were introduced in Java 15 to restrict inheritance to a predefined set of subclasses.

    • Subclasses of a sealed class must be declared in the same file as the sealed class.

    • Sealed classes are declared using the 'sealed' modifier before the 'class' keyword.

    • Example: sealed class Shape permits Circle, Square, Triangle;

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Fallout Mechanism between the microservices
  • Ans. 

    Fallout mechanism between microservices refers to how failures in one microservice can impact other microservices.

    • Fallout can occur due to cascading failures when one microservice depends on another.

    • Implementing circuit breakers can help prevent fallout by isolating failures.

    • Monitoring and alerting systems are crucial for detecting and responding to fallout.

    • Using asynchronous communication can reduce the impact of fall...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Lowe's user image Asish Kumar Mahapatra

posted on 17 Jul 2024

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

(1 Question)

  • Q1. Java tricky question related to collections
Round 2 - Technical 

(1 Question)

  • Q1. HLD discussion related to current project

Walmart Interview FAQs

How many rounds are there in Walmart Software Development Engineer Intern interview?
Walmart interview process usually has 2 rounds. The most common rounds in the Walmart interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Walmart Software Development Engineer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
DMart Interview Questions
3.9
 • 413 Interviews
Vishal Mega Mart Interview Questions
3.7
 • 162 Interviews
Croma Interview Questions
4.0
 • 135 Interviews
Reliance Digital Interview Questions
4.1
 • 131 Interviews
Lowe's Interview Questions
4.1
 • 130 Interviews
Reliance Trends Interview Questions
4.2
 • 106 Interviews
JioMart Interview Questions
3.9
 • 94 Interviews
MedPlus Interview Questions
3.6
 • 84 Interviews
Future Group Interview Questions
4.3
 • 80 Interviews
View all
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