Upload Button Icon Add office photos

Filter interviews by

Honeywell Automation Data Analyst Interview Questions and Answers

Updated 19 Mar 2022

Honeywell Automation Data Analyst Interview Experiences

1 interview found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2022

I applied via Naukri.com and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Coding Test 

It was a great pleasure to be the part of the Honeywell recruitment process

Round 2 - Technical 

(1 Question)

  • Q1. They have screened me regarding previous projects
Round 3 - Technical 

(1 Question)

  • Q1. Some technical aspects & project discussion & roles to be assigned
Round 4 - HR 

(1 Question)

  • Q1. Regarding organization & Salary packages

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice combo of getting hired by their processes

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Order of execution in SQL
  • Ans. 

    Order of execution in SQL determines the sequence in which different clauses are processed in a query.

    • SQL query is processed in the following order: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • FROM clause is processed first to retrieve data from tables.

    • WHERE clause filters the data based on specified conditions.

    • GROUP BY clause groups the data based on specified columns.

    • HAVING clause filters the grouped data.

    • SELECT ...

  • Answered by AI
  • Q2. Sumifs function
  • Q3. Boxplots?Histograms?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on SQL AND EXCEL

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. He ask about of your previous company and all
Round 2 - Technical 

(1 Question)

  • Q1. It totals depends upon for which profile you are giving interview. Mine was Data Analyst so the interviewer ask me about excel,sql,power bi and some part of statistics
Round 3 - Behavioral 

(1 Question)

  • Q1. He just asked my about my profile briefly and then questioned me about my profile ony then he told me about the work culture and the requiremnt of the profile.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me a project you did in school that shows innovation?

I applied via LinkedIn and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Explain project architecture
  • Ans. 

    Project architecture refers to the overall design and structure of a project, including its components and how they interact.

    • Project architecture involves defining the system's components and their relationships

    • It includes decisions about hardware, software, and network infrastructure

    • Architectural patterns like client-server, microservices, and event-driven can be used

    • Good architecture should be scalable, maintainable,

  • Answered by AI
  • Q2. Which languages can u code in?
  • Ans. 

    I can code in multiple languages including Python, Java, SQL, and Scala.

    • Python

    • Java

    • SQL

    • Scala

  • Answered by AI
  • Q3. Spark Optimizations

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly ur interview will be done directly by the people you will be working , so lay it out as it is.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Simple question on Excel
  • Q2. Pivot Table & Slicer
  • Q3. Excel standard function
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between AI, deep learning and machine learning
  • Ans. 

    AI is the broader concept of machines being able to carry out tasks in a way that we would consider smart. Machine learning is a subset of AI that allows machines to learn from data. Deep learning is a subset of machine learning that uses neural networks with many layers to model and solve complex problems.

    • AI is the broader concept of machines being able to carry out tasks in a way that we would consider smart.

    • Machine ...

  • Answered by AI

Skills evaluated in this interview

I applied via campus placement at Indian Institute of Technology (IIT), Chennai

Interview Preparation Tips

Round: Resume Shortlist
Experience: It was a brief 15 minute interview and done!
Tips: Be fully prepared on your resume.

General Tips: Be fully prepared on reume
Skill Tips: Be fully prepared on resume
Skills: Basics Of Machine Learning
Duration: 2
College Name: IIT Madras
Motivation: Intrest in data science
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain Order of execution in SQL
  • Ans. 

    Order of execution in SQL determines the sequence in which different clauses are processed in a query.

    • SQL query is processed in the following order: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • FROM clause is processed first to retrieve data from tables.

    • WHERE clause filters the data based on specified conditions.

    • GROUP BY clause groups the data based on specified columns.

    • HAVING clause filters the grouped data.

    • SELECT ...

  • Answered by AI
  • Q2. Sumifs function
  • Q3. Boxplots?Histograms?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on SQL AND EXCEL

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 

(3 Questions)

  • Q1. Write a python program for list/dictionary (comprehensions)
  • Ans. 

    Python program for list/dictionary comprehensions

    • List comprehension: [expression for item in iterable]

    • Dictionary comprehension: {key_expression: value_expression for item in iterable}

    • Example: squares = [x**2 for x in range(10)]

    • Example: dict_squares = {x: x**2 for x in range(10)}

  • Answered by AI
  • Q2. Write a python program to convert a number to words. For ex: i/p 123, o/p - One hundred twenty three
  • Ans. 

    Python program to convert a number to words.

    • Use a dictionary to map numbers to words.

    • Divide the number into groups of three digits and convert each group to words.

    • Handle special cases like zero, negative numbers, and numbers greater than or equal to one billion.

  • Answered by AI
  • Q3. Questions on AWS glue/EMr cluster. How to filter a dataframe in PySpark ?
Round 3 - Technical 

(2 Questions)

  • Q1. Questions based on Terraform
  • Q2. Write a python program for list/dictionary comprehensions.
  • Ans. 

    Python program for list/dictionary comprehensions.

    • List comprehension: [expression for item in iterable]

    • Dictionary comprehension: {key_expression: value_expression for item in iterable}

    • Example: squares = [x**2 for x in range(10)]

    • Example: dict_squares = {x: x**2 for x in range(10)}

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good programming knowledge in Python and Pyspark. Should know SQL as well and AWS services like GLUE, EMR cluster, Lambda.

Skills evaluated in this interview

Honeywell Automation Interview FAQs

How many rounds are there in Honeywell Automation Data Analyst interview?
Honeywell Automation interview process usually has 4 rounds. The most common rounds in the Honeywell Automation interview process are Technical, Coding Test and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 421 Interviews
Bosch Interview Questions
4.2
 • 328 Interviews
Johnson Controls Interview Questions
3.6
 • 251 Interviews
ABB Interview Questions
4.1
 • 225 Interviews
Falcon Autotech Interview Questions
4.1
 • 44 Interviews
Wipro PARI Interview Questions
3.5
 • 38 Interviews
View all
Honeywell Automation Data Analyst Salary
based on 36 salaries
₹6.6 L/yr - ₹13.6 L/yr
43% more than the average Data Analyst Salary in India
View more details

Honeywell Automation Data Analyst Reviews and Ratings

based on 6 reviews

4.2/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

3.8

Salary

4.1

Job security

4.2

Company culture

4.1

Promotions

4.2

Work satisfaction

Explore 6 Reviews and Ratings
System Engineer
401 salaries
unlock blur

₹4.8 L/yr - ₹13.2 L/yr

Project Engineer
322 salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Service Engineer
238 salaries
unlock blur

₹1.4 L/yr - ₹7.7 L/yr

Senior Engineer
203 salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Software Engineer
186 salaries
unlock blur

₹3.7 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Honeywell Automation with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.2
Compare

Emerson Electric Co.

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