Upload Button Icon Add office photos

Filter interviews by

Honeywell Technology Solutions Interview Questions and Answers

Updated 10 Jun 2025
Popular Designations

64 Interview questions

A Sales Executive was asked
Q. How do you sell a product to a dealer?
Ans. 

To sell a product to a dealer, establish a strong value proposition, build relationships, provide product knowledge, offer incentives, and follow up consistently.

  • Understand the dealer's needs and tailor the value proposition accordingly.

  • Build strong relationships with the dealer by being responsive, reliable, and trustworthy.

  • Provide comprehensive product knowledge to showcase the benefits and advantages.

  • Offer attr...

View all Sales Executive interview questions
A Software Development Engineer was asked
Q. What are the types of traversals in trees?
Ans. 

Types of traversals in trees include inorder, preorder, postorder, and level order traversal.

  • Inorder traversal: Visit left subtree, root, right subtree (L-R-N)

  • Preorder traversal: Visit root, left subtree, right subtree (N-L-R)

  • Postorder traversal: Visit left subtree, right subtree, root (L-R-N)

  • Level order traversal: Visit nodes level by level from left to right

View all Software Development Engineer interview questions
A Software Development Engineer was asked
Q. What are the features of OOPS?
Ans. 

OOPS (Object-Oriented Programming) features include encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

  • Inheritance: Ability to create new classes based on existing classes, inheriting their attributes and methods.

  • Polymorphism: Ability to use a single interface to represent different data types or objects.

  • Abstraction...

View all Software Development Engineer interview questions
A Software Development Engineer was asked
Q. What is the difference between C and C++?
Ans. 

C is a procedural programming language while C++ is an object-oriented programming language.

  • C is a procedural programming language, while C++ supports both procedural and object-oriented programming paradigms.

  • C does not support classes and objects, while C++ does.

  • C does not have built-in support for exception handling, while C++ does.

  • C does not have namespaces, while C++ does.

  • C does not have function overloading, ...

View all Software Development Engineer interview questions
A Senior Project Manager was asked
Q. What estimation techniques are you familiar with?
Ans. 

Various estimation techniques include expert judgment, analogous estimating, parametric estimating, and three-point estimating.

  • Expert judgment involves consulting with experts in the field to gather insights and opinions on the project scope and requirements.

  • Analogous estimating uses historical data from similar projects to estimate the duration and cost of the current project.

  • Parametric estimating involves using ...

View all Senior Project Manager interview questions
An Advanced Software Engineer was asked
Q. What are the core concepts of OOPS?
Ans. 

Object-oriented programming concepts that focus on data encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: bundling data and methods that operate on the data into a single unit

  • Inheritance: ability of a class to inherit properties and behavior from another class

  • Polymorphism: ability to present the same interface for different data types

  • Abstraction: hiding the complex implementation details and...

View all Advanced Software Engineer interview questions
An Advanced Software Engineer was asked
Q. What is dependency injection?
Ans. 

Dependency injection is a design pattern in which a class receives its dependencies from external sources rather than creating them itself.

  • Allows for easier testing by mocking dependencies

  • Promotes loose coupling between classes

  • Improves code reusability and maintainability

  • Examples: Constructor injection, Setter injection, Interface injection

View all Advanced Software Engineer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What is polymorphism?
Ans. 

Polymorphism is the ability of an object to take on many forms.

  • Polymorphism allows objects of different classes to be treated as if they are of the same class.

  • It can be achieved through method overloading or method overriding.

  • Example: A shape class can have different subclasses like circle, square, and triangle, but they can all be treated as shapes.

  • Polymorphism helps in achieving code reusability and flexibility.

View all Software Developer interview questions
🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. What is a linked list?
Ans. 

A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

  • Consists of nodes that contain data and a pointer to the next node

  • Can be singly or doubly linked

  • Allows for efficient insertion and deletion of elements

View all Software Developer interview questions
A DOT NET Developer was asked
Q. Write a query to create a table.
Ans. 

Query to create a table

  • Use CREATE TABLE statement

  • Specify table name and column names with data types

  • Add constraints if required

View all DOT NET Developer interview questions

Honeywell Technology Solutions Interview Experiences

155 interviews found

Embedded Engineer 2 Interview Questions & Answers

user image Pranaie Teddu

posted on 28 Jan 2025

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

I appeared for an interview in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic c and c++ questions
  • Q2. Write a program to find duplicates in the string.
  • Ans. 

    Program to find duplicates in a string array.

    • Iterate through each string in the array.

    • For each string, create a hashmap to store character frequencies.

    • Check if any character frequency is greater than 1 to find duplicates.

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. C++ questions, smart pointers
  • Q2. Multithreading, how do ensure function is thread safe
  • Ans. 

    Ensuring thread safety involves using synchronization mechanisms to prevent data races and ensure consistent access to shared resources.

    • Use mutexes to lock shared resources during access. Example: std::mutex in C++.

    • Implement atomic operations for simple data types. Example: std::atomic in C++.

    • Utilize condition variables to manage thread communication. Example: std::condition_variable in C++.

    • Avoid global variables or us...

  • Answered by AI
  • Q3. Design patterns, singleton pattern
Round 3 - One-on-one 

(2 Questions)

  • Q1. How do deal with people who are speaking negative about you and your team
  • Ans. 

    Addressing negativity from others requires staying professional, addressing concerns directly, and focusing on teamwork.

    • Stay professional and avoid engaging in negative behavior or gossip.

    • Address concerns directly by seeking feedback and understanding the root of the negativity.

    • Focus on teamwork and collaboration to overcome challenges and improve team dynamics.

    • Communicate openly and transparently to build trust and ad...

  • Answered by AI
  • Q2. How do handle pressure situations
  • Ans. 

    I handle pressure situations by staying calm, prioritizing tasks, and seeking help when needed.

    • Stay calm and focused on the task at hand

    • Prioritize tasks based on urgency and importance

    • Communicate with team members or supervisors for support

    • Take breaks to recharge and refocus if needed

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Technical 

(5 Questions)

  • Q1. What is the lifecycle of React hooks?
  • Ans. 

    React hooks lifecycle includes initialization, rendering, updates, and cleanup.

    • Hooks are called in the order they are defined in the component function.

    • useState and useEffect are commonly used hooks in React.

    • Hooks like useEffect can be used for data fetching, subscriptions, or manually changing the DOM.

    • The cleanup function in useEffect can be used to clean up any resources or subscriptions.

    • Hooks allow for more flexible...

  • Answered by AI
  • Q2. What is the process to fetch data from an API?
  • Ans. 

    To fetch data from an API, you need to send a request to the API endpoint and process the response.

    • Send a request to the API endpoint using HTTP methods like GET, POST, PUT, DELETE.

    • Include any required parameters or headers in the request.

    • Receive the response from the API, which usually comes in JSON or XML format.

    • Parse the response data to extract the information you need.

    • Handle any errors or exceptions that may occur...

  • Answered by AI
  • Q3. Hooks and custom hooks
  • Q4. Difference between useeffect and usereducer
  • Ans. 

    useEffect is used for side effects in functional components, while useReducer is used for managing state in complex components.

    • useEffect is used for handling side effects in functional components

    • useReducer is used for managing state in complex components

    • useEffect is similar to componentDidMount and componentDidUpdate in class components

    • useReducer is similar to useState but for more complex state management

    • useEffect can...

  • Answered by AI
  • Q5. Html5 and css3 questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

A take-home assignment focused on full-stack development.

Round 2 - Technical 

(2 Questions)

  • Q1. Explaining Javascript based questions.
  • Q2. Explaining React based questions.

Interview Preparation Tips

Topics to prepare for Honeywell Technology Solutions Senior Software Developer interview:
  • React
  • Javascript

People Lead Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. No response required
  • Q2. No response
Round 2 - Technical 

(2 Questions)

  • Q1. No response required
  • Q2. No response

Interview Preparation Tips

Interview preparation tips for other job seekers - Check department & Business section before you join
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

General coding 2 questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Asking about project
  • Q2. Asked about web security as I am a cyber student
  • Ans. 

    Web security involves protecting websites from various threats and vulnerabilities to ensure data integrity and user safety.

    • Use HTTPS to encrypt data in transit, preventing eavesdropping.

    • Implement input validation to prevent SQL injection attacks.

    • Utilize Content Security Policy (CSP) to mitigate cross-site scripting (XSS) risks.

    • Regularly update software and dependencies to patch known vulnerabilities.

    • Employ strong auth...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is distillation?
  • Ans. 

    Distillation is a separation process that utilizes differences in boiling points to separate components in a mixture.

    • Used in the production of alcoholic beverages, e.g., whiskey distillation.

    • Commonly applied in petroleum refining to separate crude oil into gasoline, diesel, and other products.

    • Involves heating a liquid to create vapor and then cooling the vapor to obtain a liquid.

    • Can be simple (one-step) or fractional (...

  • Answered by AI
  • Q2. What is heat exchanger?
  • Ans. 

    A heat exchanger is a device that transfers heat between two or more fluids without mixing them.

    • Used in HVAC systems to regulate temperature.

    • Common in power plants for steam generation.

    • Found in refrigeration systems to remove heat.

    • Examples include shell and tube, plate, and air-cooled heat exchangers.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your strength?
  • Q2. Why Honeywell?
  • Ans. 

    Honeywell stands out for its innovation, commitment to sustainability, and diverse opportunities in advanced technology sectors.

    • Honeywell's focus on innovation aligns with my passion for cutting-edge research, as seen in their development of smart building technologies.

    • The company's commitment to sustainability resonates with my values, particularly in their initiatives for energy efficiency and reducing carbon footpri...

  • Answered by AI

Accountant Interview Questions & Answers

user image Anonymous

posted on 7 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Accounts payables process cycle?
  • Ans. 

    The accounts payables process cycle involves receiving invoices, verifying them, recording them, and making payments to vendors.

    • Receiving invoices from vendors

    • Verifying the accuracy of the invoices

    • Recording the invoices in the accounting system

    • Making payments to vendors within the agreed upon terms

    • Reconciling accounts payable to ensure accuracy

  • Answered by AI
  • Q2. Tell me about your job profile?
  • Ans. 

    I am responsible for managing financial records, preparing financial statements, analyzing budgets, and ensuring compliance with regulations.

    • Managing financial records

    • Preparing financial statements

    • Analyzing budgets

    • Ensuring compliance with regulations

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good one it was easy and knowledgeable

Round 2 - Technical 

(3 Questions)

  • Q1. Explain about yourself
  • Ans. 

    I am a dedicated and experienced Electrical Engineer with a passion for problem-solving and innovation.

    • Graduated with a degree in Electrical Engineering from XYZ University

    • Worked for 5 years at ABC Company, specializing in power systems design

    • Proficient in CAD software and project management tools

    • Strong analytical and problem-solving skills

    • Completed several successful projects, including designing a new circuit board f...

  • Answered by AI
  • Q2. What is a generator working principle
  • Ans. 

    A generator works on the principle of electromagnetic induction to convert mechanical energy into electrical energy.

    • Generators use a magnetic field and a conductor to create a flow of electrons, generating electricity.

    • The mechanical energy can come from various sources such as turbines, engines, or hand cranks.

    • Examples include hydroelectric generators, wind turbines, and diesel generators.

  • Answered by AI
  • Q3. What is working of actuator
  • Ans. 

    An actuator is a component of a machine that is responsible for moving or controlling a mechanism or system.

    • Actuators convert electrical signals into mechanical movement.

    • They can be used in various applications such as robotics, automotive systems, and industrial machinery.

    • Examples of actuators include solenoids, motors, and hydraulic cylinders.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Explain about yourself
  • Ans. 

    I am a dedicated and experienced electrical engineer with a passion for problem-solving and innovation.

    • Graduated with a degree in Electrical Engineering from XYZ University

    • Have X years of experience working in the field, specializing in power systems

    • Proficient in using software such as AutoCAD and MATLAB for design and analysis

    • Led a team in implementing a new energy-efficient lighting system in a commercial building, r...

  • Answered by AI
  • Q2. What are your strengths
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong technical knowledge.

    • Strong problem-solving skills - able to analyze complex electrical systems and troubleshoot issues effectively

    • Attention to detail - ensuring accuracy in design and implementation of electrical projects

    • Strong technical knowledge - staying up-to-date with industry trends and advancements in electrical engineering

    • Effective com...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your core topics well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Job requirements
  • Q2. Skills related to job requirements
  • Ans. 

    Project and program management, stakeholders management, people management, Project planning and execution, Agile Project management, Budgeting and Costing

  • Answered Anonymously
Round 2 - Technical 

(2 Questions)

  • Q1. Cybersecurity domain
  • Q2. Skills related to cybersecurity
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Salary negotiation

IT Engineer 2 Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

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

(1 Question)

  • Q1. About CPQ system and SFDC
Round 2 - Technical 

(1 Question)

  • Q1. About PROS Control
Round 3 - Technical 

(1 Question)

  • Q1. Managerial round
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Honeywell Technology Solutions?
Ask anonymously on communities.

Honeywell Technology Solutions Interview FAQs

How many rounds are there in Honeywell Technology Solutions interview?
Honeywell Technology Solutions interview process usually has 2-3 rounds. The most common rounds in the Honeywell Technology Solutions interview process are Technical, HR and One-on-one Round.
How to prepare for Honeywell Technology Solutions 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 Honeywell Technology Solutions. The most common topics and skills that interviewers at Honeywell Technology Solutions expect are Automation Testing, SAP CO, Software Configuration Management, Python and Agile Coaching.
What are the top questions asked in Honeywell Technology Solutions interview?

Some of the top questions asked at the Honeywell Technology Solutions interview -

  1. 1. Abstraction Vs Interface 2. Sealed class 3. why do we use a private construc...read more
  2. Explain machine learning and how is cloud importan...read more
  3. What are design patterns, and which specific design patterns have you commonly ...read more
What are the most common questions asked in Honeywell Technology Solutions HR round?

The most common HR questions asked in Honeywell Technology Solutions interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the Honeywell Technology Solutions interview process?

The duration of Honeywell Technology Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 103 interview experiences

Difficulty level

Easy 14%
Moderate 79%
Hard 7%

Duration

Less than 2 weeks 73%
2-4 weeks 18%
4-6 weeks 9%
View more

Interview Questions from Similar Companies

Indian Army Interview Questions
4.7
 • 170 Interviews
GE Interview Questions
4.2
 • 106 Interviews
AIRBUS Interview Questions
3.6
 • 74 Interviews
Data Patterns Interview Questions
3.6
 • 51 Interviews
Aequs Interview Questions
3.6
 • 38 Interviews
View all

Honeywell Technology Solutions Reviews and Ratings

based on 1.4k reviews

3.7/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.4

Salary

3.8

Job security

3.6

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 1.4k Reviews and Ratings
Maintenance Technician

Gurgaon / Gurugram

5-10 Yrs

₹ 8-15 LPA

Cyber Architect / Firmware architect

Pune

5-10 Yrs

₹ 6-15 LPA

Sr. Program Control Supervisor

Pune

8-13 Yrs

Not Disclosed

Explore more jobs
Technical Lead
618 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Advanced Software Engineer
546 salaries
unlock blur

₹20.5 L/yr - ₹37.3 L/yr

Software Engineer
429 salaries
unlock blur

₹5.5 L/yr - ₹22.5 L/yr

Senior Engineer
324 salaries
unlock blur

₹6.3 L/yr - ₹20.5 L/yr

Senior Software Engineer
322 salaries
unlock blur

₹13.1 L/yr - ₹43.2 L/yr

Explore more salaries
Compare Honeywell Technology Solutions with

Indian Army

4.7
Compare

Indian Air Force

4.6
Compare

Tata Advanced Systems

3.7
Compare

Hindustan Aeronautics

4.3
Compare
write
Share an Interview