Upload Button Icon Add office photos

Walmart

Compare button icon Compare button icon Compare

Filter interviews by

Walmart SDE-2 Interview Questions and Answers

Updated 27 Dec 2021

19 Interview questions

A SDE-2 was asked
Q. 

Bipartite Graph Problem Statement

Determine if a given graph is bipartite. A graph is bipartite if its vertices can be divided into two independent sets, 'U' and 'V', such that every edge ('u', 'v') connec...

Ans. 

Check if a given graph is bipartite by dividing its vertices into two independent sets.

  • Create two sets 'U' and 'V' to store vertices based on their connections

  • Use BFS or DFS to traverse the graph and assign vertices to sets

  • Check if any edge connects vertices within the same set, if yes, the graph is not bipartite

A SDE-2 was asked
Q. Can you explain the DHCP Protocol?
Ans. 

DHCP is a network protocol that automatically assigns IP addresses to devices on a network.

  • DHCP stands for Dynamic Host Configuration Protocol

  • It allows devices to obtain IP addresses and other network configuration information dynamically

  • DHCP servers assign IP addresses to devices within a network

  • DHCP uses a lease mechanism to control the amount of time a device can use an IP address

  • DHCP reduces the administrative...

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency Number Problem Statement Given an array of inte ... read more
Q2. Reverse String Operations Problem Statement You are provided with ... read more
asked in KhataBook
Q3. Alien Dictionary Problem Statement Ninja is mastering an unusual ... read more
asked in Atlassian
Q4. K Most Frequent Words Problem Statement Given an array of N non-e ... read more
asked in DP World
Q5. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more
A SDE-2 was asked
Q. Can you explain the TCP/IP protocol?
Ans. 

TCP/IP is a set of protocols that governs the transmission of data over the internet.

  • TCP/IP stands for Transmission Control Protocol/Internet Protocol.

  • It is a suite of communication protocols used to interconnect network devices on the internet.

  • TCP ensures that data packets are delivered reliably and in order.

  • IP is responsible for addressing and routing packets to their destination.

  • Examples of TCP/IP applications ...

A SDE-2 was asked
Q. What is data abstraction and how can it be achieved?
Ans. 

Data abstraction is the process of hiding implementation details and showing only the necessary features of an object.

  • Data abstraction can be achieved through abstract classes and interfaces in object-oriented programming.

  • It helps in reducing complexity by providing a simplified view of the data.

  • By using access specifiers like private, protected, and public, we can control the visibility of data members and method...

A SDE-2 was asked
Q. 

Minimum Cost to Connect Sticks

You are provided with an array, ARR, of N positive integers. Each integer represents the length of a stick. The task is to connect all sticks into one by paying a cost to joi...

Ans. 

Find the minimum cost to connect all sticks into one by joining two sticks at a time.

  • Sort the array of stick lengths in non-decreasing order.

  • Keep adding the two smallest sticks at a time to minimize cost.

  • Repeat until all sticks are connected into one.

A SDE-2 was asked
Q. 

Maximum Length Pair Chain Problem Statement

You are provided with 'N' pairs of integers such that in any given pair (a, b), the first number is always smaller than the second number, i.e., a < b. A pair...

Ans. 

Given pairs of integers, find the length of the longest pair chain where each pair follows the given condition.

  • Sort the pairs based on the second element in ascending order.

  • Iterate through the sorted pairs and keep track of the maximum chain length.

  • Update the chain length if the current pair can be added to the chain.

  • Return the maximum chain length as the result.

A SDE-2 was asked
Q. How would you design a system like Pastebin?
Ans. 

A system like Pastebin allows users to store and share text snippets online.

  • Allow users to paste text content into a form

  • Generate a unique URL for each paste

  • Set expiration time for pastes to be automatically deleted

  • Implement syntax highlighting for various programming languages

  • Provide options for users to set visibility (public/private) of their pastes

Are these interview questions helpful?
🔥 Asked by recruiter 2 times
A SDE-2 was asked
Q. 

Minimum Jumps Problem Statement

Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a str...

Ans. 

Find the minimum number of jumps Bob needs to make from shop 0 to reach the final shop, or return -1 if impossible.

  • Use a greedy approach to keep track of the farthest reachable shop from the current shop.

  • If at any point the current shop is not reachable, return -1.

  • Update the current farthest reachable shop as you iterate through the array.

A SDE-2 was asked
Q. 

Convert Sorted Array to BST Problem Statement

Given a sorted array of length N, your task is to construct a balanced binary search tree (BST) from the array. If multiple balanced BSTs are possible, you can...

Ans. 

Construct a balanced binary search tree from a sorted array.

  • Create a recursive function to construct the BST by selecting the middle element as the root.

  • Recursively construct the left subtree with elements to the left of the middle element and the right subtree with elements to the right.

  • Ensure that the constructed tree is balanced by maintaining the height difference of left and right subtrees at most 1.

🔥 Asked by recruiter 2 times
A SDE-2 was asked
Q. How can you print numbers from 1 to 100 using more than two threads in an optimized approach?
Ans. 

Use multiple threads to print numbers from 1 to 100 in an optimized approach.

  • Divide the range of numbers (1-100) among the threads to avoid overlap.

  • Use synchronization mechanisms like mutex or semaphore to ensure proper order of printing.

  • Implement a logic where each thread prints its assigned numbers in sequence.

  • Consider using a thread pool to manage and optimize thread creation and execution.

  • Example: Thread 1 pri...

Walmart SDE-2 Interview Experiences

3 interviews found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I appeared for an interview in Jul 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

MCQ Challenge was to test basic computer fundamentals. The quiz had 30 questions to be attempted in 25 minutes consisting questions related to Data structures and algorithm, OOPS, OS, DBMS and some questions to find the output of Java Program.
Platform was fast and responsive, and we were not allowed to switch through tabs during the test.

  • Q1. 

    Maximum Depth of a Binary Tree Problem Statement

    Given the root node of a binary tree with N nodes, where each node contains integer values, determine the maximum depth of the tree. The depth is defined a...

  • Ans. 

    Find the maximum depth of a binary tree given its level order traversal.

    • Traverse the tree level by level and keep track of the depth using a queue data structure.

    • For each level, increment the depth by 1 until all nodes are processed.

    • Return the maximum depth encountered during traversal as the final result.

    • Example: For input [5, 10, 15, 20, -1, 25, 30, -1, 40, -1, -1, -1, -1, 45], the maximum depth is 7.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

90 minutes is what we get to present a logical coding solution to the challenge presented to us. There were 2 coding questions and we can submit the answer as many times we want. There were hidden test cases and after submitting we could only see the score.

  • Q1. 

    Sliding Window Maximum Problem Statement

    You are given an array/list of integers with length 'N'. A sliding window of size 'K' moves from the start to the end of the array. For each of the 'N'-'K'+1 possi...

  • Ans. 

    Sliding window maximum problem where we find maximum element in each window of size K.

    • Use a deque to store indices of elements in decreasing order within the window.

    • Pop elements from the deque that are out of the current window.

    • Add the maximum element to the result for each window.

  • Answered by AI
  • Q2. 

    String Transformation Problem

    Given a string (STR) of length N, you are tasked to create a new string through the following method:

    Select the smallest character from the first K characters of STR, remov...

  • Ans. 

    Given a string, select smallest character from first K characters, remove it, and append to new string until original string is empty.

    • Iterate through the string, selecting the smallest character from the first K characters each time.

    • Remove the selected character from the original string and append it to the new string.

    • Repeat the process until the original string is empty.

    • Return the final new string formed after the ope...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

It was the first technical round conducted on Zoom held for about 40 min. The video was enabled for this round. Computer fundamentals and problem solving was checked in this round.

  • Q1. 

    Maximum Number With Single Swap

    You are given an array of N elements that represent the digits of a number. You can perform one swap operation to exchange the values at any two indices. Your task is to de...

  • Ans. 

    Given an array of digits, find the maximum number that can be achieved by performing at most one swap.

    • Iterate through the array to find the maximum digit.

    • If the maximum digit is already at the beginning, find the next maximum digit and swap them.

    • If the maximum digit is not at the beginning, swap it with the digit at the beginning.

  • Answered by AI
  • Q2. 

    Equilibrium Index Problem Statement

    Given an array Arr consisting of N integers, your task is to find the equilibrium index of the array.

    An index is considered as an equilibrium index if the sum of elem...

  • Ans. 

    Find the equilibrium index of an array where sum of elements on left equals sum on right.

    • Iterate through the array and calculate prefix sum and suffix sum at each index.

    • Compare prefix sum and suffix sum to find equilibrium index.

    • Return the left-most equilibrium index found.

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was the first technical round conducted on Zoom held for about 40 min. The video was enabled for this round.

  • 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. 

    Find the number with the maximum frequency in an array of integers.

    • Create a hashmap to store the frequency of each element in the array.

    • Iterate through the array to update the frequency count.

    • Find the element with the maximum frequency and return it.

    • If multiple elements have the same maximum frequency, return the one with the lowest index.

  • Answered by AI
Round 5 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This was the final round held for about 30 min on Zoom. My video was enabled all the time and basic HR questions were being asked.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from J.C. Bose University of Science and Technology, YMCA. I applied for the job as SDE - 2 in BangaloreEligibility criteria7 CGPAWalmart interview preparation:Topics to prepare for the interview - Data structures, Algorithms, OOPS, OS, DBMS, Computer NetworksTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Make sure you have your computer science fundamentals very clear.
Tip 2 : Should know the complexity of code you write and should know the internal implementation of data structure you use while coding.
Tip 3 : Should know about everything you write in resume.
Tip 4: Practice a lot of programming problems. Participate in competitive programming contests.

Application resume tips for other job seekers

Tip 1 : Be honest about what you write in resume.
Tip 2 : Should have at least 2 projects
Tip 3 : Maintain a precise and self speaking one page resume.
Tip 4 : Add technical achievements only.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 21 Dec 2021

I appeared for an interview in Sep 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

Standard Data Structures and Algorithms round . One has to be fairly comfortable in solving algorithmic problems to pass this round with ease.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the question.

    • Return the sorted list of pairs.

  • Answered by AI
  • Q2. 

    Convert Sorted Array to BST Problem Statement

    Given a sorted array of length N, your task is to construct a balanced binary search tree (BST) from the array. If multiple balanced BSTs are possible, you ca...

  • Ans. 

    Construct a balanced binary search tree from a sorted array.

    • Create a recursive function to construct the BST by selecting the middle element as the root.

    • Recursively construct the left subtree with elements to the left of the middle element and the right subtree with elements to the right.

    • Ensure that the constructed tree is balanced by maintaining the height difference of left and right subtrees at most 1.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

Again a DSA specific round , where I was given two problems to solve ranging from Medium to Hard. Major topics discussed were Binary Trees and Dynamic Programming.

  • Q1. 

    Top View of a Binary Tree Problem Statement

    You are given a Binary Tree of integers. Your task is to determine and return the top view of this binary tree.

    The top view of a binary tree consists of all th...

  • Ans. 

    The task is to determine and return the top view of a given Binary Tree of integers.

    • The top view of a binary tree consists of all the nodes visible when the tree is viewed from the top.

    • Identify the nodes that appear on the top when looking from above the tree.

    • Output the top view as a space-separated list of node values from left to right.

  • Answered by AI
  • Q2. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Find the minimum number of jumps Bob needs to make from shop 0 to reach the final shop, or return -1 if impossible.

    • Use a greedy approach to keep track of the farthest reachable shop from the current shop.

    • If at any point the current shop is not reachable, return -1.

    • Update the current farthest reachable shop as you iterate through the array.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round majorly focused on past projects and experiences from my Resume and some standard System Design + LLD questions + some basic OS questions which a SDE-2 is expected to know .

  • Q1. Design a URL shortener.
  • Ans. 

    Design a URL shortener system to generate short URLs for long URLs.

    • Use a unique identifier for each long URL to generate a short URL.

    • Store the mapping of short URL to long URL in a database.

    • Implement a redirection mechanism to redirect short URLs to their corresponding long URLs.

  • Answered by AI
  • Q2. How can you print numbers from 1 to 100 using more than two threads in an optimized approach?
  • Ans. 

    Use multiple threads to print numbers from 1 to 100 in an optimized approach.

    • Divide the range of numbers (1-100) among the threads to avoid overlap.

    • Use synchronization mechanisms like mutex or semaphore to ensure proper order of printing.

    • Implement a logic where each thread prints its assigned numbers in sequence.

    • Consider using a thread pool to manage and optimize thread creation and execution.

    • Example: Thread 1 prints n...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, DBMS, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2021

I appeared for an interview in Mar 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Standard Data Structures and Algorithms round . One has to be fairly comfortable in solving algorithmic problems to pass this round with ease.

  • Q1. 

    Minimum Cost to Connect Sticks

    You are provided with an array, ARR, of N positive integers. Each integer represents the length of a stick. The task is to connect all sticks into one by paying a cost to jo...

  • Ans. 

    Find the minimum cost to connect all sticks into one by joining two sticks at a time.

    • Sort the array of stick lengths in non-decreasing order.

    • Keep adding the two smallest sticks at a time to minimize cost.

    • Repeat until all sticks are connected into one.

  • Answered by AI
  • Q2. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Find the minimum number of jumps Bob needs to make from shop 0 to reach the final shop, or return -1 if impossible.

    • Use BFS to traverse through the shops and keep track of the minimum jumps needed to reach each shop.

    • If at any point the current shop has Arr[i] = 0, return -1 as it is impossible to reach the final shop.

    • Return the minimum number of jumps needed to reach the last shop.

    • Example: For the input [5, 3, 2, 1, 0, ...

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

This round was preety intense and went for over 1 hour . I was asked 2 preety good coding questions (one was from Graphs and the other one was from DP) . After that I was grilled on my Computer Networks concepts but luckily I was able to answer all the questions and the interviewer was also quite impressed .

  • Q1. 

    Bipartite Graph Problem Statement

    Determine if a given graph is bipartite. A graph is bipartite if its vertices can be divided into two independent sets, 'U' and 'V', such that every edge ('u', 'v') conne...

  • Ans. 

    Check if a given graph is bipartite by dividing its vertices into two independent sets.

    • Create two sets 'U' and 'V' to store vertices based on their connections

    • Use BFS or DFS to traverse the graph and assign vertices to sets

    • Check if any edge connects vertices within the same set, if yes, the graph is not bipartite

  • Answered by AI
  • Q2. 

    Maximum Length Pair Chain Problem Statement

    You are provided with 'N' pairs of integers such that in any given pair (a, b), the first number is always smaller than the second number, i.e., a < b. A pai...

  • Ans. 

    Given pairs of integers, find the length of the longest pair chain where each pair follows the given condition.

    • Sort the pairs based on the second element in ascending order.

    • Iterate through the sorted pairs and keep track of the maximum chain length.

    • Update the chain length if the current pair can be added to the chain.

    • Return the maximum chain length as the result.

  • Answered by AI
  • Q3. Can you explain the TCP/IP protocol?
  • Ans. 

    TCP/IP is a set of protocols that governs the transmission of data over the internet.

    • TCP/IP stands for Transmission Control Protocol/Internet Protocol.

    • It is a suite of communication protocols used to interconnect network devices on the internet.

    • TCP ensures that data packets are delivered reliably and in order.

    • IP is responsible for addressing and routing packets to their destination.

    • Examples of TCP/IP applications inclu...

  • Answered by AI
  • Q4. Can you explain the DHCP Protocol?
  • Ans. 

    DHCP is a network protocol that automatically assigns IP addresses to devices on a network.

    • DHCP stands for Dynamic Host Configuration Protocol

    • It allows devices to obtain IP addresses and other network configuration information dynamically

    • DHCP servers assign IP addresses to devices within a network

    • DHCP uses a lease mechanism to control the amount of time a device can use an IP address

    • DHCP reduces the administrative burd...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round majorly focused on past projects and experiences from my Resume and some standard System Design +
LLD questions + some basic OS questions which a SDE-2 is expected to know .

  • Q1. How would you design a system like Pastebin?
  • Ans. 

    A system like Pastebin allows users to store and share text snippets online.

    • Allow users to paste text content into a form

    • Generate a unique URL for each paste

    • Set expiration time for pastes to be automatically deleted

    • Implement syntax highlighting for various programming languages

    • Provide options for users to set visibility (public/private) of their pastes

  • Answered by AI
  • Q2. What is data abstraction and how can it be achieved?
  • Ans. 

    Data abstraction is the process of hiding implementation details and showing only the necessary features of an object.

    • Data abstraction can be achieved through abstract classes and interfaces in object-oriented programming.

    • It helps in reducing complexity by providing a simplified view of the data.

    • By using access specifiers like private, protected, and public, we can control the visibility of data members and methods.

    • Exa...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects/experiences explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Walmart?
Ask anonymously on communities.

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

I appeared for an interview before Sep 2020.

Round 1 - Assignment 

Round duration - 90 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was the technical round, held around at 10 AM IST on Google Meet.
Firstly she greeted me and asked me to tell something about myself, to which I introduced myself, explaining my academic and some projects also.
After that we moved on to the Hackathon project, which was smart cart self-checkout system. I explained the project along with the code, wherever necessary.
Every word you say while explaining should be clear to you.I used Firebase and SQL while explaining my project, to which she asked some questions related to it, 
Then she moved to the DBMS part, types of joins,what is indexing, how to approach if you were to design a payment system.
At last she asked me some Data Structure questions, which were of medium complexity

  • Q1. 

    Remove the Kth Node from the End of a Linked List

    You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Lin...

  • Ans. 

    Remove the Kth node from the end of a singly linked list given the position 'K'.

    • Traverse the list to find the length 'N' of the linked list.

    • Calculate the position of the node to be removed from the beginning as 'N - K + 1'.

    • Traverse the list again and remove the node at the calculated position.

  • Answered by AI
  • Q2. 

    House Robber Problem Statement

    Consider Mr. X, a professional robber who is planning to rob houses along a street. These houses are arranged in a circle, which means the first house is a neighbor to the l...

  • Ans. 

    House Robber problem where adjacent houses have connected security system, find maximum money Mr. X can rob without triggering security.

    • Use dynamic programming to keep track of maximum money robbed at each house.

    • At each house, decide whether to rob the current house or skip it based on maximum money robbed so far.

    • Handle the circular nature of houses by considering two cases: robbing the first house and not robbing the ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The interviewer was very frank and cheerful. This was held at 2:30 PM IST on Google Meet.
He firstly greeted me and asked me how I was doing.
How was my previous round, any technical difficulties?
Then he asked me to introduce myself.
He started telling about his journey to Lowe's and his technical background.
Then he asked some HR related questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. Eligibility criteria7.5 CGPALowe's India interview preparation:Topics to prepare for the interview - Data structures and algorithms, OOPS, operating Systems,SQL, DBMS, Machine Learning.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA questions, interview questions as much as you can.(400 leetcode questions) + (1000+ geeksforgeeks score) is good approximation of your preparation.
Tip 2 : You should have a good internship experience or 1 or 2 good projects on Android/web-d or Machine Learning.You should be through with your projects and be able to tell further improvements for the future.
Tip 3 : Be CONFIDENT with what you say. Don't murmur or speak in the mouth.The interviewer wants to know your thought process.

Application resume tips for other job seekers

Tip 1 : Resume is the first impression of you.so it must be very eye-catching. write some decent (maybe 1 or 2 is enough) projects on resume.
Tip 2 : Should be through with each and every point you have written on your resume. people usually write 10- 15 skills on resume while confident in only 5.Please don't do it.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(1 Question)

  • Q1. 1. Tableau questions
Round 2 - Technical 

(1 Question)

  • Q1. Tableau questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
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
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
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 - Coding Test 

They ask nothing only few questions on dsa

Round 3 - Group Discussion 

They ask previous projects knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with full of confidence but if you're non it background
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How indexing works internally?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Intoduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies such as HTML, CSS, and JavaScript

    • Strong problem-solving skills and ability to work in a team environment

  • Answered by AI
  • Q2. Your Projects
  • Ans. 

    Developed a web application for tracking personal fitness goals

    • Used React.js for front-end development

    • Implemented RESTful APIs for data retrieval and storage

    • Utilized MongoDB for database management

  • Answered by AI

I applied via Naukri.com and was interviewed in Jan 2022. There was 1 interview round.

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear sir

i have 3 years of experience.

Tell us how to improve this page.

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.7k Interviews
DMart Interview Questions
3.9
 • 450 Interviews
Vishal Mega Mart Interview Questions
3.7
 • 175 Interviews
Titan Company Interview Questions
4.3
 • 166 Interviews
Croma Interview Questions
3.9
 • 153 Interviews
Reliance Digital Interview Questions
4.1
 • 143 Interviews
Lowe's Interview Questions
4.2
 • 136 Interviews
Reliance Trends Interview Questions
4.1
 • 111 Interviews
JioMart Interview Questions
3.9
 • 102 Interviews
Trent Interview Questions
4.0
 • 91 Interviews
View all
Walmart SDE-2 Salary
based on 31 salaries
₹18 L/yr - ₹29.3 L/yr
25% less than the average SDE-2 Salary in India
View more details

Walmart SDE-2 Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.7

Salary

4.7

Job security

4.4

Company culture

3.8

Promotions

4.1

Work satisfaction

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

₹22.8 L/yr - ₹41 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹34.3 L/yr - ₹60 L/yr

Software Engineer
934 salaries
unlock blur

₹13 L/yr - ₹40 L/yr

Software Developer
461 salaries
unlock blur

₹17.7 L/yr - ₹35 L/yr

Software Development Engineer 3
369 salaries
unlock blur

₹24 L/yr - ₹43 L/yr

Explore more salaries
Compare Walmart with

Amazon

4.0
Compare

Reliance Retail

3.9
Compare

DMart

3.9
Compare

Reliance Digital

4.1
Compare
write
Share an Interview