Premium Employer

i

This company page is being actively managed by Clean Harbors Team. If you also belong to the team, you can get access from here

Clean Harbors Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clean Harbors Senior Software Engineer Interview Questions and Answers for Experienced

Updated 26 Jun 2023

Clean Harbors Senior Software Engineer Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
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 - Technical 

(2 Questions)

  • Q1. About MVC Cache, MVC Session Management, Model binding, MVC Performance increasing technics, and some basic questions in C#. Simple html coding test
  • Q2. In SQL Server : About indexes, functions , procedure tuning, transactions
Round 3 - Behavioral 

(1 Question)

  • Q1. About achievements, behavior, weakness, client handling, professional strengths, problem soving skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Fast hiring process and release job as soon as possible

Interview questions from similar companies

Round 1 - Telephonic Call 

(1 Question)

  • Q1. Process synchronisation and threads.
Round 2 - Coding Test 

Linked list and sorting. Linux system side programming.

Round 3 - Technical 

(1 Question)

  • Q1. Thread synchronisation. Locking.
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial discussion. Threading and watchdog related stuff.

Interview Preparation Tips

Interview preparation tips for other job seekers - Linux and drivers concepts should be good

I applied via Referral and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1. Bit Manipulation
  • Q2. 2. String Manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics of programming and memory management.

Interview Questionnaire 

1 Question

  • Q1. OSI model

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher. You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 2 - Coding Test 

Tree, LinkedList, Array

Round 3 - Technical 

(2 Questions)

  • Q1. Find depth of a tree
  • Ans. 

    The depth of a tree is the length of the longest path from the root node to any leaf node.

    • Depth of a tree can be found using depth-first search (DFS) algorithm.

    • The depth of a tree is equal to the maximum depth of its children plus one.

    • For example, in a binary tree, the depth of the tree is the maximum depth of the left and right subtrees plus one.

  • Answered by AI
  • Q2. Merge two sorted arrays
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Tree, Graphs

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is real dom and virtual dom in react
  • Ans. 

    Real DOM is the actual representation of the HTML structure, while Virtual DOM is a lightweight copy used for efficient updates.

    • Real DOM is slower as it directly manipulates the HTML structure.

    • Virtual DOM is faster as it updates the lightweight copy and then syncs with the real DOM.

    • React uses the Virtual DOM to minimize unnecessary re-rendering of components.

    • Virtual DOM allows for efficient batch updates, improving per...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were 6 questions to be solved. 3 average and 3 tough questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Concepts ask in interview Java Threads Exception Collections Spring boot annotations Git
Round 3 - HR 

(1 Question)

  • Q1. A general conversations, regarding my experience, project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java concepts.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write unit testing for adding two nimbers
  • Ans. 

    Unit testing for adding two numbers

    • Create a test case with two numbers and expected sum

    • Call the function that adds two numbers

    • Assert that the result matches the expected sum

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Explain challenge you faced in your last project
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on fundamentals and previous projects

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2022. There were 5 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 - Coding Test 

Question was moderate. Good knowledge of dsa needed. CP not mandatory.

Round 3 - Technical 

(2 Questions)

  • Q1. Question on oops principals, complexity analysis of programs, c++ concepts of classes, memory allocation etc.
  • Q2. How much memory is allocated when a class is declared? How much when instance is created ? And so on...
  • Ans. 

    Memory allocation for class and instance creation in Java

    • Memory is allocated for class variables and methods when the class is loaded into memory

    • Memory for instance variables is allocated when an instance of the class is created

    • The amount of memory allocated depends on the data type and size of the variables

    • Static variables are allocated memory only once, while instance variables are allocated memory for each instance

    • M...

  • Answered by AI
Round 4 - Behavioral 

(1 Question)

  • Q1. What do you understand by distributed systems, multitasking multiprograming etc, overview idea of amazon working etc.
  • Ans. 

    Distributed systems involve multiple computers working together, multitasking allows for multiple tasks to be performed simultaneously, Amazon uses distributed systems for their online services.

    • Distributed systems involve multiple computers working together to achieve a common goal

    • Multitasking allows for multiple tasks to be performed simultaneously by a single computer

    • Multiprogramming allows multiple programs to run o...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic hr questions like relocation, aim etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - must have good knowledge of OOPS, c++ or java.. good knowledge of DSA.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2022. There were 3 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 - Aptitude Test 

MCQ based 50 marks 50 questions test.

Round 3 - HR 

(3 Questions)

  • Q1. Family background
  • Q2. Relocation issue
  • Q3. Why applied in Ramky

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear the aptitude round & go for HR interview confidently. You'll crack it.

Clean Harbors Interview FAQs

How many rounds are there in Clean Harbors Senior Software Engineer interview for experienced candidates?
Clean Harbors interview process for experienced candidates usually has 3 rounds. The most common rounds in the Clean Harbors interview process for experienced candidates are Resume Shortlist, Technical and Behavioral.
How to prepare for Clean Harbors Senior Software Engineer interview for experienced candidates?
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 Clean Harbors. The most common topics and skills that interviewers at Clean Harbors expect are HTML, Javascript, MVC, WCF and ASP.Net.
What are the top questions asked in Clean Harbors Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the Clean Harbors Senior Software Engineer interview for experienced candidates -

  1. About MVC Cache, MVC Session Management, Model binding, MVC Performance increas...read more
  2. In SQL Server : About indexes, functions , procedure tuning, transacti...read more

Tell us how to improve this page.

Clean Harbors Senior Software Engineer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more
Join Clean Harbors 40-plus years of sustainability in action

Interview Questions from Similar Companies

VA Tech Wabag Interview Questions
3.9
 • 47 Interviews
DuPont Interview Questions
4.2
 • 41 Interviews
Harsco Interview Questions
3.8
 • 16 Interviews
Nalco water Interview Questions
4.0
 • 13 Interviews
View all
Clean Harbors Senior Software Engineer Salary
based on 85 salaries
₹8.4 L/yr - ₹35 L/yr
35% more than the average Senior Software Engineer Salary in India
View more details

Clean Harbors Senior Software Engineer Reviews and Ratings

based on 7 reviews

2.1/5

Rating in categories

1.5

Skill development

1.6

Work-life balance

2.0

Salary

1.9

Job security

1.4

Company culture

1.6

Promotions

1.9

Work satisfaction

Explore 7 Reviews and Ratings
Senior Associate
151 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Associate
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Specialist
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Clean Harbors with

Ion Exchange India

3.7
Compare

Re Sustainability Limited

3.9
Compare

DuPont

4.2
Compare

VA Tech Wabag

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