Upload Button Icon Add office photos

Filter interviews by

Home Depot Senior Java Developer Interview Questions and Answers

Updated 12 Sep 2024

Home Depot Senior Java Developer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to make an entity as composite key in spring boot
  • Ans. 

    Use @Embeddable and @EmbeddedId annotations to create a composite key in Spring Boot

    • Create a new class for the composite key and annotate it with @Embeddable

    • Define the composite key fields within the new class

    • In the entity class, use @EmbeddedId annotation to reference the composite key class

  • Answered by AI
  • Q2. How to handle exception handling in spring boot
  • Ans. 

    Exception handling in Spring Boot involves using @ControllerAdvice, @ExceptionHandler, and ResponseEntity.

    • Use @ControllerAdvice to define global exception handling for all controllers

    • Use @ExceptionHandler to handle specific exceptions in individual controllers

    • Return ResponseEntity with appropriate status codes and error messages

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study microservices architecture and spring boot

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Memory management in java 8
  • Ans. 

    Java 8 introduced improvements in memory management with features like Metaspace and G1 garbage collector.

    • Java 8 introduced Metaspace to replace PermGen for class metadata storage.

    • G1 garbage collector in Java 8 improves garbage collection performance by dividing the heap into regions.

    • Java 8 also introduced the concept of String deduplication to reduce memory usage.

  • Answered by AI
  • Q2. Jvm architecture
  • Q3. Sorting algo interview questions
  • Q4. Coding interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Java 8 coding and basic interview questions were asked, so anyone can find online

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2022. 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 

(2 Questions)

  • Q1. Questions on Spring security Questions on Api desgin patterns
  • Q2. Questions on kafka interview streaming

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Un-professional interviewer.
2.Came late to the interview.
3.Started reading my cv in the interview session. And he was very rude.
4. That's when I realized this company is not for me.
5. I managed to answer most of questions.
6. He gave tricky program where the fail-fast scenario will occur.
I wrote a program and program was behaving correctly as per collection fail-fast. When I asked him you should be knowing the solution tell me the solution I want to learn then he was like you can try later.
7. Shame on you. Why the hell you send unprofessional to the interview.

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

Round 1 - Technical 

(1 Question)

  • Q1. Difference between run and start methods in multi threading What is fail fast and fail safe Difference between List Iterator and iterator
  • Ans. 

    Explaining differences between multi-threading concepts and List Iterator

    • The run() method is used to execute the thread's task, while the start() method is used to start the thread.

    • Fail fast means to immediately stop the program when an error occurs, while fail safe means to continue running the program and handle the error.

    • List Iterator is used to traverse a list in both forward and backward directions, while Iterator...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep knowledge on concepts is required like multi threading process, how to control thread sequence and internal working of Hash map, hash table

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Is there WFM option in tata elxsi?
  • Ans. 

    Tata Elxsi offers WFM solutions for various industries including healthcare, retail, and manufacturing.

    • Tata Elxsi provides Workforce Management (WFM) solutions for industries such as healthcare, retail, and manufacturing.

    • Their WFM solutions help organizations optimize their workforce and improve productivity.

    • Tata Elxsi's WFM solutions include features such as scheduling, time and attendance tracking, and performance ma...

  • Answered by AI
  • Q2. How is work life balance
  • Ans. 

    Work life balance is important to me and I prioritize it by setting boundaries and managing my time effectively.

    • I prioritize my workload and set realistic deadlines

    • I communicate my availability and limitations to my team

    • I make time for hobbies and activities outside of work

    • I practice self-care and prioritize my mental and physical health

    • I am open to flexible work arrangements when necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic and any advance frame work
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between Hashset and Treeset
  • Q2. Final Finally and finalize difference
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration is 1 hr and topic is core java

Round 2 - HR 

(2 Questions)

  • Q1. What i sth OOPS
  • Q2. What i s abstract class
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. It was lld question to design a cab booking system.
  • Q2. Tell me about yourself
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given an array of n numbers , find the kth largest find the sum from a th largest to bth largest n can be huge
  • Ans. 

    Find the sum of kth to bth largest numbers in a huge array efficiently.

    • Sort the array in descending order to easily find the kth and bth largest numbers.

    • Use a priority queue or min heap to efficiently find the kth and bth largest numbers without sorting the entire array.

    • Once you have the kth and bth largest numbers, iterate through the array and sum the numbers between them.

  • Answered by AI
  • Q2. Mostly elasticsearch related and company work related questions

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HAckerrank based test

Home Depot Interview FAQs

How many rounds are there in Home Depot Senior Java Developer interview?
Home Depot interview process usually has 1 rounds. The most common rounds in the Home Depot interview process are Technical.
What are the top questions asked in Home Depot Senior Java Developer interview?

Some of the top questions asked at the Home Depot Senior Java Developer interview -

  1. How to make an entity as composite key in spring b...read more
  2. How to handle exception handling in spring b...read more

Tell us how to improve this page.

Home Depot Senior Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

L&T Construction Interview Questions
4.0
 • 740 Interviews
Senco Gold Interview Questions
4.5
 • 558 Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
Quess Interview Questions
3.9
 • 407 Interviews
TCS iON Interview Questions
3.9
 • 366 Interviews
Planet Spark Interview Questions
3.7
 • 356 Interviews
Udaan Interview Questions
3.9
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zomato Interview Questions
3.7
 • 308 Interviews
Ekart Logistics Interview Questions
4.0
 • 305 Interviews
View all
Accountant
3 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Home Depot with

Quess

3.9
Compare

L&T Construction

4.0
Compare

Ekart Logistics

4.0
Compare

Udaan

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