Upload Button Icon Add office photos

Lowe's

Compare button icon Compare button icon Compare

Filter interviews by

Lowe's Interview Questions, Process, and Tips

Updated 24 Feb 2025

Top Lowe's Interview Questions and Answers

View all 72 questions

Lowe's Interview Experiences

Popular Designations

127 interviews found

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Mainly related to Java8, datastructure, about project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus of core concepts.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About Lowe’s. Invoice and Po and non po and credit note and befit note.

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s good experience sound quality of the call was good

Accounts Payable Interview Questions asked at other Companies

Q1. What is invoice ,what is po what is brs trial balance and p& l account ,cash flow statement, subsidiary books , debt not and credit not, GAAP rules , differed tax...etc
View answer (6)

Trade payable Interview Questions & Answers

user image Anonymous

posted on 7 Mar 2022

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 2 interview rounds.

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 - Technical 

(1 Question)

  • Q1. About yourself and basic of accounts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you reply them


That's all

Associate SDE Interview Questions & Answers

user image Khushi Sagraya

posted on 21 Sep 2021

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Scope in c++
  • Ans. 

    Scope in C++ refers to the region of the program where a variable can be accessed.

    • Variables declared inside a function have local scope and can only be accessed within that function.

    • Variables declared outside of any function have global scope and can be accessed throughout the program.

    • Variables declared within a block have block scope and can only be accessed within that block.

    • C++ also supports namespace scope, which a...

  • Answered by AI
  • Q2. Course scheduling problem
  • Ans. 

    Course scheduling problem involves assigning courses to students and professors based on availability and preferences.

    • The problem involves matching courses with students and professors based on their availability and preferences.

    • Constraints such as class size, room availability, and time slots must be taken into account.

    • Optimization techniques such as linear programming and genetic algorithms can be used to solve the p...

  • Answered by AI
  • Q3. Graphs and shortest distance calculation in graphs
  • Ans. 

    Graphs are used to represent relationships between objects. Shortest distance calculation is important in finding the most efficient path between two points.

    • Graphs consist of nodes and edges that connect them.

    • Shortest distance calculation can be done using algorithms like Dijkstra's algorithm or Bellman-Ford algorithm.

    • Applications of graphs and shortest distance calculation include GPS navigation, network routing, and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, clear and crisp about your answers

Skills evaluated in this interview

Lowe's interview questions for popular designations

 Software Engineer

 (17)

 Senior Software Engineer

 (15)

 Associate Software Engineer

 (9)

 Software Developer

 (5)

 Analyst

 (4)

 Data Analyst

 (4)

 Senior Analyst

 (3)

 Senior Data Engineer

 (3)

Space Planner Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I was interviewed in Aug 2021.

Interview Questionnaire 

1 Question

  • Q1. To solve a situation based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be to the point, don't over explain things

Get interview-ready with Top Lowe's Interview Questions

Interview Questionnaire 

1 Question

  • Q1. Oops , and project , dbms

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?
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Jobs at Lowe's

View all

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.

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?
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

I was interviewed 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. 

    This was actually pretty easy question.
    Step 1 - I gave an intuition of the question and how to approach it.
    Step2 - I gave basic 2 pass algorithm, then moved to efficient one-pass algorithm

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

    At first, I analyzed the problem and compared to the standard problem which is linear instead of circular.
    Step1:It took me some moments to think of a solution,I asked her about the constraints and some corner cases.
    Step2: Since first and last house is also connected,
    I first considered the first house and applied the standard algorithm till (n-2)th index.
    Then I neglected the first house and applied standard algorithm ti...

  • Answered Anonymously
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

Top Lowe's Software Developer Interview Questions and Answers

Q1. Delete Kth node From EndYou have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List. For example: The given linked list is 1 -> 2 -... read more
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Interview Questionnaire 

1 Question

  • Q1. Oops ,project, dbms

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?
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Nov 2022

I applied via LinkedIn and was interviewed before Nov 2021. There were 4 interview rounds.

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 

Basic JS and react questions like closures , hooks etc

Round 3 - Coding Test 

Advanced React and Js questions , in depth code analysis

Round 4 - Case Study 

System design and architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Please learn the basics . The interview progresses gradually , so do be thorough with the basics to tackle the tougher problems

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Lowe's Interview FAQs

How many rounds are there in Lowe's interview?
Lowe's interview process usually has 2-3 rounds. The most common rounds in the Lowe's interview process are Technical, One-on-one Round and HR.
How to prepare for Lowe's 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 SQL, Product Management, Supply Chain Management, Python and SDLC.
What are the top questions asked in Lowe's interview?

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

  1. What is the difference between virtual and real D...read more
  2. 1 If frequently insertion and deletion happen which data structure you choose a...read more
  3. Create some dynamic buttons with a json data and whenever you click on that you...read more
How long is the Lowe's interview process?

The duration of Lowe's interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Lowe's Interview Process

based on 99 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 408 Interviews
Landmark Group Interview Questions
4.0
 • 146 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Fastenal Interview Questions
3.1
 • 8 Interviews
Home Depot Interview Questions
3.7
 • 4 Interviews
Ace Hardware Interview Questions
2.7
 • 1 Interview
Menards Interview Questions
3.0
 • 1 Interview
View all

Lowe's Reviews and Ratings

based on 793 reviews

4.2/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

3.9

Salary

4.0

Job security

4.2

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 793 Reviews and Ratings
Senior Software Engineer_Java_Springboot

Bangalore / Bengaluru

4-8 Yrs

₹ 14.7-35 LPA

Senior Data Scientist

Bangalore / Bengaluru

5-10 Yrs

₹ 25.75-44 LPA

Software Engineer_Java_React

Bangalore / Bengaluru

3-6 Yrs

₹ 4.8-20 LPA

Explore more jobs
Software Engineer
1k salaries
unlock blur

₹7.7 L/yr - ₹27 L/yr

Senior Software Engineer
963 salaries
unlock blur

₹11.2 L/yr - ₹39.7 L/yr

Senior Analyst
226 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Analyst
214 salaries
unlock blur

₹4.2 L/yr - ₹18 L/yr

Lead Software Engineer
164 salaries
unlock blur

₹18 L/yr - ₹60 L/yr

Explore more salaries
Compare Lowe's with

Home Depot

3.7
Compare

Ace Hardware

2.7
Compare

Menards

3.0
Compare

Sherwin Williams Paints

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview