Upload Button Icon Add office photos

Filter interviews by

Honeywell Technology Solutions Software Development Engineer Interview Questions, Process, and Tips

Updated 29 Sep 2023

Honeywell Technology Solutions Software Development Engineer Interview Experiences

1 interview found

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

I applied via campus placement at Manipal Institute of Technology (MIT) and was interviewed in Aug 2023. 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 - Coding Test 

MCQs on DSA, OOPS, SQL

Round 3 - Technical 

(4 Questions)

  • Q1. 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, while

  • Answered by AI
  • Q2. 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: Hid...

  • Answered by AI
  • Q3. Explain Linked lists and double-linked lists.
  • Ans. 

    Linked lists are data structures where each element points to the next element, while double-linked lists have pointers to both the next and previous elements.

    • Linked lists are made up of nodes, where each node contains data and a pointer to the next node.

    • Double-linked lists have nodes with pointers to both the next and previous nodes, allowing for traversal in both directions.

    • Example: Singly linked list: 1 -> 2 -> 3 ->...

  • Answered by AI
  • Q4. 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

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

Dsa + JavaScript related questions and outputs

Round 2 - Coding Test 

Js related coding + easy dsa

Round 3 - Behavioral 

(2 Questions)

  • Q1. Mostly about the projects you did earlier
  • Q2. What do you focus on learning in future
  • Ans. 

    I focus on learning new programming languages, technologies, and best practices to stay current in the industry.

    • Learning new programming languages such as Python or Go

    • Exploring emerging technologies like blockchain or machine learning

    • Staying updated on best practices in software development such as Agile or DevOps

    • Improving problem-solving skills through coding challenges and projects

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Differentiate between RISC and CISC
  • Ans. 

    RISC stands for Reduced Instruction Set Computing and CISC stands for Complex Instruction Set Computing.

    • RISC processors have a smaller set of simple instructions, while CISC processors have a larger set of complex instructions.

    • RISC processors typically execute instructions in one clock cycle, while CISC processors may require multiple clock cycles.

    • RISC processors rely on optimizing compilers for performance, while CISC...

  • Answered by AI
  • Q2. Define and differentiate interpreter and compiler
  • Ans. 

    Interpreter translates code line by line while compiler translates entire code at once.

    • Interpreter: translates code line by line, slower execution, easier debugging (e.g. Python)

    • Compiler: translates entire code at once, faster execution, harder debugging (e.g. C++)

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

Basic leetcode problems

Round 2 - Technical 

(1 Question)

  • Q1. Basic java questions
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(1 Question)

  • Q1. Coding samples and expected output
Round 2 - Technical 

(1 Question)

  • Q1. Virtual functions Polymorphism Runtime polymorphism compile time polymorphism Constructor Destructor Destructor overloading possible why Deep copy vs shallow copy Program for operator overloading Program f...
Round 3 - Behavioral 

(1 Question)

  • Q1. Working of project
Round 4 - HR 

(1 Question)

  • Q1. Discussion about package

Interview Preparation Tips

Interview preparation tips for other job seekers - No kt, no training they will provide, worst organisation ever, worst management, don't explain the task what you have to do , if you have other option please join other company don't join this company very bad
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Multithreading using Rtos
  • Ans. 

    Multithreading using RTOS involves creating multiple threads to run concurrently, managed by a real-time operating system.

    • RTOS provides scheduling and synchronization mechanisms for managing multiple threads.

    • Threads in RTOS can have different priorities to ensure timely execution of critical tasks.

    • Example: Using FreeRTOS to create multiple threads for handling different tasks in an embedded system.

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement

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 

Simple basic codes were asked like finding prime number and all

Round 3 - Technical 

(2 Questions)

  • Q1. What do we mean by inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and promotes the concept of hierarchy in programming.

    • The existing class is called the parent class or superclass, and the new class is called the child class or subclass.

    • The child class inherits all the properties and methods of the parent class and can...

  • Answered by AI
  • Q2. How are stacks implemented while building softwares
  • Ans. 

    Stacks are implemented using arrays or linked lists to store and retrieve data in a Last-In-First-Out (LIFO) order.

    • Arrays are used to implement static stacks where the size is fixed

    • Linked lists are used to implement dynamic stacks where the size can change

    • Push() and pop() operations are used to add and remove elements from the stack

    • Stacks are used in programming languages for function calls and recursion

    • Stacks are also...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Are you able to relocate to Bangalore
  • Ans. 

    Yes, I am able to relocate to Bangalore.

    • I am open to relocating for the internship opportunity.

    • I am flexible and willing to move to Bangalore for the duration of the internship.

    • I have no constraints that would prevent me from relocating to Bangalore.

    • I am excited about the prospect of working in Bangalore and experiencing a new city.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and go for it.. they are going to judge some basics only

Skills evaluated in this interview

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

(1 Question)

  • Q1. 1. Intro 2. Tech stacks 3. Questions on all
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question based on project architecture
  • Q2. Access specifiers

Interview Preparation Tips

Topics to prepare for Collins Aerospace Software Developer interview:
  • Oops concept
Interview preparation tips for other job seekers - Interview process is good and easy
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the second highest salary in sql
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the second highest salary.

    • Use SELECT statement to retrieve salary column from the table.

    • Use ORDER BY clause to sort the salaries in descending order.

    • Use LIMIT 1,1 to get the second highest salary.

  • Answered by AI
  • Q2. Check duplicate rows using sql, group by, window function.
  • Ans. 

    Use SQL query with GROUP BY and window function to check for duplicate rows.

    • Use GROUP BY to group rows with same values together

    • Use COUNT() function to count the number of occurrences of each group

    • Use window function like ROW_NUMBER() to assign a unique number to each row within a group

  • Answered by AI

Skills evaluated in this interview

Honeywell Technology Solutions Interview FAQs

How many rounds are there in Honeywell Technology Solutions Software Development Engineer interview?
Honeywell Technology Solutions interview process usually has 3 rounds. The most common rounds in the Honeywell Technology Solutions interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Honeywell Technology Solutions Software Development Engineer interview?

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

  1. What is the difference between C and C...read more
  2. What are the types of traversals in tre...read more
  3. What are the features of OO...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 895 Interviews
Siemens Interview Questions
4.1
 • 424 Interviews
Cisco Interview Questions
4.2
 • 395 Interviews
Bosch Interview Questions
4.2
 • 329 Interviews
ABB Interview Questions
4.1
 • 226 Interviews
Indian Army Interview Questions
4.7
 • 148 Interviews
View all
24% less than the average Software Development Engineer Salary in India
View more details

Honeywell Technology Solutions Software Development Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Technical Lead
640 salaries
unlock blur

₹9.4 L/yr - ₹30.7 L/yr

Senior Engineer
458 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Advanced Software Engineer
435 salaries
unlock blur

₹12 L/yr - ₹34 L/yr

Software Engineer
425 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Senior Software Engineer
350 salaries
unlock blur

₹7.2 L/yr - ₹30 L/yr

Explore more salaries
Compare Honeywell Technology Solutions with

Siemens

4.1
Compare

Bosch

4.2
Compare

ABB

4.1
Compare

Schneider Electric

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