Upload Button Icon Add office photos

Filter interviews by

Lowe's Associate Software Engineer Interview Questions, Process, and Tips

Updated 30 May 2024

Top Lowe's Associate Software Engineer Interview Questions and Answers

  • Q1. 1 If frequently insertion and deletion happen which data structure you choose and why?
  • Q2. 2. How you connect Kafka to spring boot project 3. How Microservices Communicate with eachother 4. How HashMap internally work and how you resolve the collision 5. Revers ...read more
  • Q3. Target element index in Rotated sorted array
View all 6 questions

Lowe's Associate Software Engineer Interview Experiences

10 interviews found

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 Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding questions to be solved in 60 minutes. First question was based on arrays and second based on binary tree.

Round 2 - Technical 

(4 Questions)

  • Q1. The interviewer asked about the projects i mentioned in the resume. My first project was based on DBMS so he started by asking basic database questions like what key points to be considered while designing...
  • Q2. Next he asked me to write few SQL queries using joins and also asked what is a foreign key, types of joins.
  • Q3. According to my certifications mentioned in my resume, he started with DSA. He asked me to write code for inssertion and deletion of a node in a Linked list using class and functions. He asked abt JVM, JDK...
  • Q4. At last, he asked me an aptitude question to find the rate when amount, principal and time is given.
Round 3 - HR 

(4 Questions)

  • Q1. All behavioral questions were asked by HR. He first started with my internships and what tools i used for projects. Make sure you know every detail of every project done during internship.
  • Q2. He asked about what difficulties and challenges i faced during working on projects and how i overcame them. Also asked about team leading and its importance.
  • Q3. Finally, he asked why Lowe's and why do you think you fit for the role. Then he asked what do you know about the company and its values.
  • Q4. At last, he asked if i have any offer in hand and the salary offering.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume crisp to the point and be consistent with your preparation especially DSA.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Apr 2023.

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 

Trim bst, subtraction LL

Round 3 - Technical 

(4 Questions)

  • Q1. Combination sum
  • Q2. Target element index in Rotated sorted array
  • Ans. 

    Finding index of target element in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target element lies in.

    • Perform binary search on the appropriate half to find the target element index.

  • Answered by AI
  • Q3. Longest substring with no repeated characters
  • Ans. 

    Find the longest substring in a given string with no repeated characters.

    • Use a sliding window approach to keep track of the current substring.

    • Use a hash set to keep track of the characters in the current substring.

    • If a repeated character is found, move the start of the window to the next character after the first occurrence of the repeated character.

    • Update the maximum length of the substring as the window slides throug

  • Answered by AI
  • Q4. Reverse words in a string
  • Ans. 

    Reverse the order of words in a given string.

    • Split the string into an array of words using space as a delimiter.

    • Reverse the array of words.

    • Join the array of words back into a string using space as a separator.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Open for relocation
  • Ans. 

    Yes, I am open for relocation.

    • I am willing to relocate for the right opportunity

    • I am open to exploring new places and cultures

    • I understand that relocation may be necessary for career growth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dp, backtracking should be properly done

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given SumYou are given an array/list ARR consisting ... read more
asked in Clarivate
Q2. Best time to buy and sell stock IIYou have been given stock value ... read more
Q3. Intersection of Two Arrays IIYou have been given two integer arra ... read more
asked in CGI Group
Q4. Frog JumpThere is a frog on the 1st step of an N stairs long stai ... read more
asked in Gainsight
Q5. Connect N Ropes With Minimum CostYou have been given 'N' ropes of ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

There were 2 coding questions and mcqs

Round 3 - Technical 

(2 Questions)

  • Q1. Data structures and algorithms
  • Q2. Questions about tools used in projects
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

25 mcqs in. 25 mins to be solved on DSA oops logical reasoning

Round 2 - Coding Test 

2 coding ques were to be solved in 90mins

Round 3 - Technical 

(1 Question)

  • Q1. 20 mins interview with major discussion on projects
Round 4 - HR 

(2 Questions)

  • Q1. What u know about Lowe's India
  • Q2. What ur skills align with this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and keep smiling in all the interview

Lowe's interview questions for designations

 Associate Software Developer

 (1)

 Software Engineer

 (17)

 Senior Software Engineer

 (15)

 Lead Software Engineer

 (1)

 Senior Software Development Engineer

 (1)

 Associate Engineer

 (1)

 Software Developer

 (5)

 Associate Data Engineer

 (1)

I applied via Referral and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Coding Test 

1. 20 MCQ question based in java ,SQL , network ,os
2 DSA questions
1. Subtract two Linked list
2 . Trim Binary Tree

Round 2 - One-on-one 

(2 Questions)

  • Q1. 1 If frequently insertion and deletion happen which data structure you choose and why?
  • Ans. 

    I would choose a linked list as it allows for efficient insertion and deletion operations.

    • Linked lists have constant time complexity for insertion and deletion operations

    • Arrays have a linear time complexity for these operations

    • Examples of linked list applications include implementing stacks and queues

    • Arrays are better suited for random access and searching

  • Answered by AI
  • Q2. 2. How you connect Kafka to spring boot project 3. How Microservices Communicate with eachother 4. How HashMap internally work and how you resolve the collision 5. Reverse a Stack 6. Best time to buy a sto...
  • Ans. 

    Technical interview questions on Kafka, Microservices, HashMap, Stack and Stock

    • To connect Kafka to Spring Boot project, add Kafka dependencies in pom.xml and configure Kafka properties in application.properties

    • Microservices communicate with each other through REST APIs or message brokers like Kafka or RabbitMQ

    • HashMap internally uses an array of buckets to store key-value pairs. Collision is resolved by chaining or open...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. 1. Tell me about yourself 2. Why you want to switch 3. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare mediums level questions of leetcode
Knowledge of any language (java , javascript)

Skills evaluated in this interview

Get interview-ready with Top Lowe's Interview Questions

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

I applied via campus placement at Krishna Institute of Engineering and Technology, Ghaziabad and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 DSA questions and other mcqs

Round 2 - Technical 

(1 Question)

  • Q1. 1 coding questions and other discussions on resume, projects, skillsets

Interview Questionnaire 

1 Question

  • Q1. Oops , and project , dbms

Associate Software Engineer interview

user image Placement Interview

posted on 28 Oct 2021

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Case Study 

Hackathon organized by lowes on campus

Round 2 - Technical 

(1 Question)

  • Q1. 1 hour technical round held and many questions were asked from data structures and algorithms and about some projects that i have created
Round 3 - HR 

(1 Question)

  • Q1. Typical HR questions were asked

Interview Preparation Tips

Topics to prepare for Lowe's Associate Software Engineer interview:
  • DSA
  • React.Js
  • Node.Js
  • Java
Interview preparation tips for other job seekers - Keep good grasp in dsa and you should have some projects to showcase and improve your chances.

Interview Questionnaire 

1 Question

  • Q1. Oops ,project, dbms

Lowe's Interview FAQs

How many rounds are there in Lowe's Associate Software Engineer interview?
Lowe's interview process usually has 3-4 rounds. The most common rounds in the Lowe's interview process are Technical, HR and Coding Test.
How to prepare for Lowe's Associate 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 Lowe's. The most common topics and skills that interviewers at Lowe's expect are SDLC, Coding, Middleware, Software Development Life Cycle and Technical Documentation.
What are the top questions asked in Lowe's Associate Software Engineer interview?

Some of the top questions asked at the Lowe's Associate Software Engineer interview -

  1. 1 If frequently insertion and deletion happen which data structure you choose a...read more
  2. 2. How you connect Kafka to spring boot project 3. How Microservices Communicat...read more
  3. Target element index in Rotated sorted ar...read more

Tell us how to improve this page.

People are getting interviews through

based on 6 Lowe's interviews
Campus Placement
Job Portal
Referral
67%
17%
17%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 396 Interviews
Landmark Group Interview Questions
4.0
 • 140 Interviews
Tesco Interview Questions
3.9
 • 120 Interviews
Target Interview Questions
4.2
 • 114 Interviews
Reliance Trends Interview Questions
4.3
 • 100 Interviews
Decathlon Interview Questions
3.9
 • 98 Interviews
V2 Retail Interview Questions
3.4
 • 53 Interviews
View all
Lowe's Associate Software Engineer Salary
based on 132 salaries
₹5.9 L/yr - ₹20 L/yr
137% more than the average Associate Software Engineer Salary in India
View more details

Lowe's Associate Software Engineer Reviews and Ratings

based on 18 reviews

3.9/5

Rating in categories

3.5

Skill development

3.6

Work-Life balance

3.9

Salary & Benefits

4.0

Job Security

4.0

Company culture

3.1

Promotions/Appraisal

3.3

Work Satisfaction

Explore 18 Reviews and Ratings
Software Engineer
1k salaries
unlock blur

₹7.3 L/yr - ₹27 L/yr

Senior Software Engineer
915 salaries
unlock blur

₹11.4 L/yr - ₹40 L/yr

Senior Analyst
229 salaries
unlock blur

₹7.4 L/yr - ₹25 L/yr

Analyst
228 salaries
unlock blur

₹4.2 L/yr - ₹16 L/yr

Lead Software Engineer
162 salaries
unlock blur

₹18 L/yr - ₹58 L/yr

Explore more salaries
Compare Lowe's with

Home Depot

3.8
Compare

Ace Hardware

2.9
Compare

Sherwin Williams Paints

4.0
Compare

Fastenal

3.1
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