Upload Button Icon Add office photos

Filter interviews by

Walmart SDE (Software Development Engineer) Interview Questions, Process, and Tips

Updated 21 Jun 2022

Top Walmart SDE (Software Development Engineer) Interview Questions and Answers

Walmart SDE (Software Development Engineer) Interview Experiences

4 interviews found

Round 1 - Technical 

(5 Questions)

  • Q1. Prototypical Inheritance
  • Q2. Why we can't use arrow function in constructor
  • Ans. 

    Arrow functions do not have their own 'this' value, which is required in constructors.

    • Arrow functions do not have a 'this' binding, so 'this' will refer to the parent scope.

    • Constructors require 'this' to refer to the newly created object.

    • Using arrow functions in constructors can lead to unexpected behavior and errors.

  • Answered by AI
  • Q3. Explain details about CORS
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing and is a security feature implemented in web browsers.

    • CORS allows web servers to specify which origins are allowed to access their resources.

    • It is used to prevent unauthorized access to resources on a different domain.

    • CORS is implemented using HTTP headers such as Access-Control-Allow-Origin and Access-Control-Allow-Methods.

    • It is important to properly configure CORS to avoi...

  • Answered by AI
  • Q4. Explain with an example about Lexical Scoping
  • Ans. 

    Lexical scoping is a way of defining variable scope based on where they are declared in the code.

    • Variables declared inside a function have local scope and are not accessible outside the function.

    • Variables declared outside a function have global scope and can be accessed from anywhere in the code.

    • Nested functions can access variables declared in their parent function.

    • Example: function outer() { let x = 10; function inne...

  • Answered by AI
  • Q5. Advantages of arrow function
  • Ans. 

    Arrow functions have concise syntax, implicit return, and lexical this binding.

    • Shorter syntax than traditional function expressions

    • Implicit return of a single expression

    • Lexical this binding, avoiding the need for .bind() or self = this

    • Example: const double = (num) => num * 2;

    • Example: const names = ['Alice', 'Bob', 'Charlie']; const nameLengths = names.map(name => name.length);

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Walmart SDE (Software Development Engineer) interview:
  • OOPS
  • Javascript
  • Data Structures
Interview preparation tips for other job seekers - Learn the basic concepts of javascripts even if you explain you have to write some example code for the explanation.

Skills evaluated in this interview

I applied via Referral and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked data structures and algorithms in 1st round
Round 2 - Technical 

(1 Question)

  • Q1. Spring boot core Java microservices algo lld hld
Round 3 - Hm 

(1 Question)

  • Q1. Hld for ticket management ..like ticket management in Zomato
Round 4 - HR 

(1 Question)

  • Q1. Sal negotiation + basic communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA must can't think apart from it so be prepared for DSA everything will be pretty smooth

SDE (Software Development Engineer) Interview Questions Asked at Other Companies

asked in Carwale
Q1. A string is given consisting of lowercase alphabets. Write a func ... read more
asked in Carwale
Q2. Given a balance and 100 coins;out of which,one is heavier. Find m ... read more
Q3. Given a binary search tree , print the path which has the sum equ ... read more
asked in Housing.com
Q4. Given a square area of 1024x1024 on a map with some flats (housin ... read more
asked in Carwale
Q5. Delete nodes in linkedlist which have a greater value on right si ... read more
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 

(1 Question)

  • Q1. Orages spoling question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for coding and Java ( or one language)

SDE (Software Development Engineer) interview

user image Sankalp Dayal

posted on 27 Nov 2021

Walmart interview questions for designations

 SDE

 (2)

 Software Development Engineer

 (4)

 SDE-2

 (3)

 Software Development Engineer 3

 (5)

 Senior Software Development Engineer

 (1)

 Software Development Engineer II

 (1)

 Software Development Engineer Intern

 (1)

 Software Engineer

 (32)

Interview questions from similar companies

Round 1 - Coding Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. They asked me about my projects and some ezz dsa questions
Round 3 - One-on-one 

(1 Question)

  • Q1. This round was totally based on my projects and some dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your basics cleared ex - if you work on js you should know that in depth
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

Walmart Interview FAQs

How many rounds are there in Walmart SDE (Software Development Engineer) interview?
Walmart interview process usually has 2-3 rounds. The most common rounds in the Walmart interview process are One-on-one Round, Technical and Resume Shortlist.
What are the top questions asked in Walmart SDE (Software Development Engineer) interview?

Some of the top questions asked at the Walmart SDE (Software Development Engineer) interview -

  1. Why we can't use arrow function in construc...read more
  2. explain with an example about Lexical Scop...read more
  3. Explain details about C...read more

Tell us how to improve this page.

Walmart SDE (Software Development Engineer) Salary
based on 52 salaries
₹15 L/yr - ₹40 L/yr
6% less than the average SDE (Software Development Engineer) Salary in India
View more details

Walmart SDE (Software Development Engineer) Reviews and Ratings

based on 5 reviews

3.2/5

Rating in categories

3.1

Skill development

2.6

Work-life balance

3.4

Salary

3.7

Job security

3.3

Company culture

2.9

Promotions

2.5

Work satisfaction

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

₹14 L/yr - ₹47 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹22.3 L/yr - ₹70 L/yr

Software Engineer
770 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Software Development Engineer 3
249 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