Upload Button Icon Add office photos

Filter interviews by

Walmart Senior UI Software Engineer Interview Questions and Answers

Updated 22 Mar 2024

Walmart Senior UI Software Engineer Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. React Coding to implement Stop watch with Start, Stop, Resume, Pause
  • Ans. 

    Implement a React stopwatch with start, stop, resume, and pause functionalities.

    • Use state to track the elapsed time

    • Create functions for start, stop, resume, and pause actions

    • Use setInterval for updating the timer every second

    • Display the timer in the UI

  • Answered by AI
  • Q2. Theoretical Questions on React like Code splitting, Virtual DOM, useCallback etc.
  • Q3. How does memory leak happen in Javascript
  • Ans. 

    Memory leaks in JavaScript happen when unused objects are not properly released from memory.

    • Memory leaks can occur when variables are not properly dereferenced, preventing garbage collection.

    • Closures can also lead to memory leaks if they hold references to large objects.

    • Event listeners can cause memory leaks if not removed properly after use.

    • Using setInterval without clearing it can lead to memory leaks.

    • Circular refere

  • Answered by AI
  • Q4. Error Handling component in React
  • Ans. 

    Error handling in React involves creating a component to display error messages and handling errors gracefully.

    • Create an ErrorBoundary component to catch errors in child components.

    • Use try-catch blocks in async functions to handle errors.

    • Display error messages to the user using state or props.

    • Use error boundaries to prevent the entire UI from crashing due to a single error.

  • Answered by AI
  • Q5. Currying related problem. Implement sum(1)(2)(3)()

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very thorough with Javascript and React concepts. Nothing complicated

Skills evaluated in this interview

Interview questions from similar companies

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. System Design Questions, Situation based problems of system design
  • Q2. Data Structure Coding question of HashMap
Round 2 - Technical 

(1 Question)

  • Q1. Again System design, Question from your project and architecture of your project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

2 Coding pseudocode questions and mcqs on basic CS topics

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

Software Engineer Interview Questions & Answers

Lowe's user image Abhishek Agrawal

posted on 20 Aug 2024

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

I applied via Referral and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React js questions like Dom manipulation, useCallback and useMemo these kind of questions
  • Q2. Create some dynamic buttons with a json data and whenever you click on that you need to maintain active and inactive states and also you need to show the content of the button based on the json data whenev...
  • Ans. 

    Create dynamic buttons with JSON data, maintain active/inactive states, and show content on click

    • Create buttons dynamically using JSON data

    • Toggle between active and inactive states on click

    • Display button content based on JSON data on click

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More advanced react based questions like test cases handling and redux state management techniques
  • Q2. Prop drilling concepts
Round 3 - Behavioral 

(1 Question)

  • Q1. More about your projects you have worked on and also front end technical basic questions
Round 4 - HR 

(2 Questions)

  • Q1. Why Lowe's only
  • Ans. 

    Lowe's is a leading home improvement retailer with a strong focus on technology and innovation.

    • Lowe's has a strong reputation for investing in technology and innovation within the home improvement industry.

    • I am impressed by Lowe's commitment to digital transformation and their use of cutting-edge tools and technologies.

    • I believe Lowe's offers a challenging and rewarding environment for software engineers to grow and de...

  • Answered by AI
  • Q2. What are your expectations here nd all
  • Ans. 

    I expect a challenging work environment, opportunities for growth, and a supportive team.

    • Challenging work that allows me to utilize my skills and learn new technologies

    • Opportunities for career advancement and professional development

    • A supportive team that fosters collaboration and growth

    • Clear communication and expectations from management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare well and have a good core understanding of reactjs and css and javascript you can crack it.

Skills evaluated in this interview

Walmart Interview FAQs

How many rounds are there in Walmart Senior UI Software Engineer interview?
Walmart interview process usually has 1 rounds. The most common rounds in the Walmart interview process are Technical.
How to prepare for Walmart Senior UI Software Engineer interview?
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 Agile, Coding, Data Structures, Debugging and HTML.
What are the top questions asked in Walmart Senior UI Software Engineer interview?

Some of the top questions asked at the Walmart Senior UI Software Engineer interview -

  1. React Coding to implement Stop watch with Start, Stop, Resume, Pa...read more
  2. How does memory leak happen in Javascr...read more
  3. Error Handling component in Re...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Walmart interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Oracle Interview Questions
3.7
 • 887 Interviews
Google Interview Questions
4.4
 • 846 Interviews
Cisco Interview Questions
4.2
 • 395 Interviews
DMart Interview Questions
4.0
 • 391 Interviews
View all
Software Engineer III
1.7k salaries
unlock blur

₹14 L/yr - ₹47 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹22.6 L/yr - ₹70 L/yr

Software Engineer
772 salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Software Development Engineer 3
238 salaries
unlock blur

₹15.6 L/yr - ₹46 L/yr

Assistant Team Leader
235 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.1
Compare

Google

4.4
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview