Upload Button Icon Add office photos
Engaged Employer

i

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

HP ADHESIVES Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

HP ADHESIVES Warehouse Manager Interview Questions and Answers

Updated 25 Jan 2024

HP ADHESIVES Warehouse Manager Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

Personal details and past experience share

Round 2 - HR 

(1 Question)

  • Q1. Document and other

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work location and good friendly person

Interview questions from similar companies

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Your Experience
Round 2 - Technical 

(2 Questions)

  • Q1. Your knowledge about work profile
  • Q2. Famlier question related with your field
Round 3 - Your family background 

(2 Questions)

  • Q1. Your past work experience
  • Q2. Your family background & other

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Simple & Practical

I applied via Naukri.com and was interviewed in Jul 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 - Select  due to experience 

Interview Preparation Tips

Topics to prepare for Mitsu Chem Assistant Manager interview:
  • Plastic blow
Interview preparation tips for other job seekers - Only if you can work with load than apply

I applied via Approached by Company and was interviewed before Nov 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 - One-on-one 

(3 Questions)

  • Q1. Share the work experience of previous companies
  • Q2. Manager ask about how to achieve company targets
  • Q3. Salary negotiations¬ice period

Interview Preparation Tips

Interview preparation tips for other job seekers - company see mostly dedication &confidence levels of the employee
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Current CTC, ready to relocate
Round 2 - Technical 

(1 Question)

  • Q1. Detail about field work and family members
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical issue
Round 4 - Technical 

(1 Question)

  • Q1. Technical issue
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Where you worked before sallary expectations and all

Interview Preparation Tips

Interview preparation tips for other job seekers - There's nothing like interview in the Kolkata region of jyoti resins and Adhesive basically they will tell you they are looking for graduates but most the seniors employees which work in Kolkata region are not even 10th pass

I applied via Recruitment Consulltant and was interviewed before Nov 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 - One-on-one 

(2 Questions)

  • Q1. Just share my previous job experience in the interview
  • Q2. Salary negotiations&working about territory root map

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident &don,t think about negative thoughts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Assignment 

Only DSa and aptitude was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are lucky, you will be selected.
dene wala toh bhagwan hi hota h.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ round on OOPS (java) , JS, C#, SQL(dbms)

Round 2 - Technical 

(4 Questions)

  • Q1. Two DSA questions , Happy Number (leetcode Q.202) , First Unique character in String (leetcode Q.387)
  • Q2. Polymorphism, Function Overloading & Overriding (code), Constructor, Access Specifier
  • Q3. Project (about nextjs, diff. b/w next & react, advantage of nextjs, SPA, some discussion about tailwind, miui (library), js)
  • Q4. DBMS query of second highest employee , find employeeid of manager whose employee name is 'something' (based on self join & only one table)
  • Ans. 

    Use self join in a DBMS query to find the employeeid of the manager whose employee name is 'something'.

    • Use a self join on the table to compare employee and manager names

    • Order the results by employeeid in descending order to get the second highest employee

    • Select the manager's employeeid where the employee name is 'something'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn OOPS concept in deep (very deep) , DBMS in deep (especially joins queries) , well prepare for DSA & your projects.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Mar 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Tricky questions from js, sql, c#

Round 3 - Technical 

(2 Questions)

  • Q1. Uses of B Tree
  • Ans. 

    B Trees are used for indexing in databases and file systems.

    • Used for efficient searching, insertion, and deletion operations in databases.

    • Helps in maintaining sorted data for quick retrieval.

    • Commonly used in file systems to store large amounts of data efficiently.

    • Each node in a B Tree can have multiple children, reducing the height of the tree.

  • Answered by AI
  • Q2. What is CTE in sql
  • Ans. 

    CTE stands for Common Table Expression in SQL, used to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs improve readability and maintainability of complex queries

    • CTEs can be recursive, allowing for hierarchical data querying

    • CTEs are defined using the WITH keyword followed by the CTE name and query

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Program to reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node to point to the previous node.

    • Start with three pointers: current, prev, and next.

    • Iterate through the linked list, updating the next pointers to point to the previous node.

    • Update prev, current, and next pointers in each iteration until the end of the list is reached.

  • Answered by AI
  • Q2. Puzzles from geeksforgeeks
Round 5 - HR 

(1 Question)

  • Q1. General HR questions like difficulties, strength weakness etc.

Skills evaluated in this interview

HP ADHESIVES Interview FAQs

How many rounds are there in HP ADHESIVES Warehouse Manager interview?
HP ADHESIVES interview process usually has 2 rounds. The most common rounds in the HP ADHESIVES interview process are Group Discussion and HR.

Tell us how to improve this page.

HP ADHESIVES Warehouse Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

IVP (India) Interview Questions
4.0
 • 13 Interviews
Bodal Chemicals Interview Questions
3.8
 • 13 Interviews
Rain Industries Interview Questions
3.6
 • 11 Interviews
Chemfab Alkalis Interview Questions
3.4
 • 10 Interviews
Gp Petroleums Interview Questions
3.4
 • 7 Interviews
Mitsu Chem Interview Questions
4.3
 • 4 Interviews
View all
Sales Executive
41 salaries
unlock blur

₹2.2 L/yr - ₹5.7 L/yr

Area Sales Manager
41 salaries
unlock blur

₹4.5 L/yr - ₹9.4 L/yr

Sales Officer
20 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Senior Sales Executive
11 salaries
unlock blur

₹3.7 L/yr - ₹5.6 L/yr

Assistant Manager- Purchase
7 salaries
unlock blur

₹3.5 L/yr - ₹9.2 L/yr

Explore more salaries
Compare HP ADHESIVES with

Bodal Chemicals

3.8
Compare

Tamilnadu Petroproducts

4.3
Compare

Rain Industries

3.6
Compare

Gp Petroleums

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