Upload Button Icon Add office photos

Filter interviews by

Hindcon Chemicals Interview Questions and Answers

Updated 28 Feb 2025

Hindcon Chemicals Interview Experiences

Popular Designations

2 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Related my Past job details

Round 2 - Coding Test 

Related to my work and others.

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Newspaper Ad

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about yourself
  • Ans. Told my present situation. And shared my past experience and education
  • Answered Anonymously

Sales Engineer Interview Questions asked at other Companies

Q1. What is Channel Sales, How to expand Channel & Channel Sales, Steps for dealer network expansion. Comptlitators market presence with status. Technical datasheets, General Drawing arrengment and other products related details.
View answer (2)

Jobs at Hindcon Chemicals

View all

Interview questions from similar companies

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

(1 Question)

  • Q1. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified, tuple cannot be modified

    • List uses square brackets [], tuple uses parentheses ()

    • List is used for collections of items that may change, tuple is used for fixed collections

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
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 - Coding Test 

It was straightforward

Round 3 - HR 

(2 Questions)

  • Q1. Was easy explaining about role
  • Q2. Previous experience. How to handle the role and expectation. Work schedule. Explain about the team
  • Ans. 

    The candidate should discuss their previous experience, how they handle their role and expectations, their work schedule, and provide an explanation about their previous team.

    • Discuss previous experience in software engineering roles

    • Explain how you handled your role and met expectations in previous positions

    • Describe your typical work schedule and any flexibility you have

    • Provide an overview of your previous team, their s

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. How much Experience
  • Ans. 

    I have 10 years of experience in software engineering, specializing in backend development and system architecture.

    • 10 years of experience in software engineering

    • Specialize in backend development and system architecture

    • Worked on projects involving scalability and performance optimization

  • Answered by AI
  • Q2. Do you have any supervisor license
  • Ans. 

    No, I do not have a supervisor license.

    • I do not possess a supervisor license at the moment.

    • I have not pursued obtaining a supervisor license in my career.

    • My focus has been on technical expertise rather than supervisory roles.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to test of motors
  • Ans. 

    Testing of motors involves various methods to ensure functionality and performance.

    • Performing insulation resistance tests to check for any electrical faults

    • Conducting load tests to measure the motor's performance under different conditions

    • Checking for abnormal noise or vibrations during operation

    • Inspecting the motor for any physical damage or wear

    • Using thermography to detect overheating issues

  • Answered by AI
  • Q2. What is transformer safety relay's
  • Ans. 

    Transformer safety relays are devices used to protect transformers from faults and overloads.

    • Transformer safety relays monitor the electrical parameters of a transformer, such as current, voltage, and temperature.

    • They can trip the transformer offline in case of a fault to prevent damage.

    • Some common types of transformer safety relays include overcurrent relays, differential relays, and temperature relays.

  • Answered by AI

I applied via Company Website and was interviewed in Mar 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. About kilns pregeater elevator and belt conveyors
  • Q2. Slope percentage calculation of kiln Tan value in oil analysys Material and man power handling
  • Ans. 

    The question covers slope percentage calculation of kiln, tan value in oil analysis, and material and manpower handling.

    • For slope percentage calculation of kiln, we need to measure the height and length of the kiln and use the formula tan(theta) = height/length.

    • Tan value in oil analysis is used to determine the acidity of the oil. It is calculated by dividing the acid number by the saponification number.

    • Material and ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Prepare technically
Follow dress code
Groom well

I applied via Company Website

Round 1 - Technical 

(3 Questions)

  • Q1. Process Safety, Hazop
  • Q2. Unit operations and Unit Process
  • Q3. Chemical reaction, Design of Heat Excha
Round 2 - HR 

(1 Question)

  • Q1. Regarding joining and Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Technically should be strong and aware about Process Safety
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. About the purchase field
Round 3 - One-on-one 

(1 Question)

  • Q1. Technik question about purchase
Round 4 - One-on-one 

(1 Question)

  • Q1. HR round asked persona question

Software Developer Interview Questions & Answers

IVP (India) user image MCA22 Gaurav Prakash

posted on 13 Aug 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(3 Questions)

  • Q1. What is arrow function in JS
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions have a shorter syntax compared to regular functions.

    • They do not have their own 'this' keyword, and instead inherit 'this' from the parent scope.

    • Arrow functions are best suited for non-method functions, and cannot be used as constructors.

    • Example: const add = (a, b) => a + b;

  • Answered by AI
  • Q2. What is runtime polymerphism
  • Ans. 

    Runtime polymorphism is the ability of a subclass to override a method from its superclass during runtime.

    • Runtime polymorphism is achieved through method overriding in object-oriented programming.

    • It allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • The actual method called is determined by the type of object at runtime.

    • Example: Animal class has a method 'makeSo...

  • Answered by AI
  • Q3. What is abstraction in oops
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving maintainability of code

    • Example: A car is an abstraction of various components like engine, wheels, etc. Users interact with the car without needing to know the

  • Answered by AI
Round 3 - Coding Test 

DSA questions Reverse the linkedlist

Round 4 - One-on-one 

(2 Questions)

  • Q1. Explain your project
  • Q2. He asked two SQL queries

Skills evaluated in this interview

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.

Hindcon Chemicals Interview FAQs

How many rounds are there in Hindcon Chemicals interview?
Hindcon Chemicals interview process usually has 1-2 rounds. The most common rounds in the Hindcon Chemicals interview process are One-on-one Round, Aptitude Test and Coding Test.
How to prepare for Hindcon Chemicals 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 Hindcon Chemicals. The most common topics and skills that interviewers at Hindcon Chemicals expect are Project Sales, Government Sales, Construction Chemicals, B2B Sales and Waterproofing.

Tell us how to improve this page.

Hindcon Chemicals Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Air Liquide Interview Questions
3.7
 • 24 Interviews
Sika Interview Questions
3.7
 • 16 Interviews
Paushak Interview Questions
3.7
 • 14 Interviews
IVP (India) Interview Questions
4.1
 • 13 Interviews
Privi Organics Interview Questions
3.6
 • 13 Interviews
View all

Hindcon Chemicals Reviews and Ratings

based on 11 reviews

3.6/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.1

Salary

4.2

Job security

3.2

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 11 Reviews and Ratings
Project Sales Executive ( Construction Chemical Admixture)

Navi Mumbai,

Mumbai

2-6 Yrs

₹ 3-6 LPA

QC manager For RMC Plant

Kolkata

5-10 Yrs

Not Disclosed

Explore more jobs
Sales Engineer
6 salaries
unlock blur

₹2.7 L/yr - ₹3.5 L/yr

Junior Engineer
4 salaries
unlock blur

₹1.8 L/yr - ₹2.2 L/yr

Senior Manager
4 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

Accountant
3 salaries
unlock blur

₹2.7 L/yr - ₹3.1 L/yr

Back Office Operation Executive
3 salaries
unlock blur

₹2.2 L/yr - ₹3.3 L/yr

Explore more salaries
Compare Hindcon Chemicals with

Bodal Chemicals

3.8
Compare

Jubilant Industries

3.6
Compare

Garware Hi-Tech Films

4.2
Compare

Ester Industries

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