Upload Button Icon Add office photos

Filter interviews by

Honeywell Technology Solutions Software Engineer II Interview Questions and Answers

Updated 9 May 2022

Honeywell Technology Solutions Software Engineer II Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Code test and technical question
Round 2 - Technical 

(1 Question)

  • Q1. Code test and technical questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Project and technical issue handling
Round 4 - HR 

(1 Question)

  • Q1. About Strength and weakness. Your expectations if job offered

Interview Preparation Tips

Interview preparation tips for other job seekers - First two rounds are purely technical may involve code test based on still and panel. Third round is managerial round may involve questions related to your experience on project and technical issue handled by you. Final is regular HR round.

Software Engineer II Jobs at Honeywell Technology Solutions

View all

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
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

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

(1 Question)

  • Q1. Frequency of character
  • Ans. 

    The question is asking about how often each character appears in a given string.

    • Iterate through the string and count the frequency of each character using a hashmap.

    • Return the hashmap with characters as keys and their frequencies as values.

  • 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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DO 178 B/C Process
  • Ans. 

    DO 178 B/C is a software development standard for airborne systems.

    • DO 178 B/C is a set of guidelines for developing software for airborne systems.

    • It ensures that software is reliable, safe, and meets regulatory requirements.

    • The process includes requirements analysis, design, coding, testing, and verification.

    • Compliance with DO 178 B/C is often required for certification of avionics software.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself
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 Engineer II interview?
Honeywell Technology Solutions interview process usually has 4 rounds. The most common rounds in the Honeywell Technology Solutions interview process are Technical, Behavioral and HR.
How to prepare for Honeywell Technology Solutions Software Engineer II 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 Agile Coaching, Medical Coding, SQL, Change Management and Software Configuration Management.
What are the top questions asked in Honeywell Technology Solutions Software Engineer II interview?

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

  1. Code test and technical quest...read more
  2. Code test and technical questi...read more
  3. Project and technical issue handl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 896 Interviews
Siemens Interview Questions
4.1
 • 426 Interviews
Cisco Interview Questions
4.1
 • 395 Interviews
Bosch Interview Questions
4.2
 • 331 Interviews
ABB Interview Questions
4.1
 • 227 Interviews
Indian Army Interview Questions
4.7
 • 148 Interviews
View all
Honeywell Technology Solutions Software Engineer II Salary
based on 166 salaries
₹7 L/yr - ₹25.4 L/yr
At par with the average Software Engineer II Salary in India
View more details

Honeywell Technology Solutions Software Engineer II Reviews and Ratings

based on 31 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.1

Salary

4.0

Job security

3.4

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 31 Reviews and Ratings
Software Engineer II

Hyderabad / Secunderabad

2-7 Yrs

Not Disclosed

Software Engineer II

Greater Noida,

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Software Engineer II

Hyderabad / Secunderabad

2-7 Yrs

Not Disclosed

Explore more jobs
Technical Lead
628 salaries
unlock blur

₹10 L/yr - ₹30.7 L/yr

Senior Engineer
458 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Advanced Software Engineer
440 salaries
unlock blur

₹12 L/yr - ₹34.8 L/yr

Software Engineer
420 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Senior Software Engineer
345 salaries
unlock blur

₹7.2 L/yr - ₹25.4 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