Premium Employer

i

This company page is being actively managed by Johnson Controls Team. If you also belong to the team, you can get access from here

Johnson Controls Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Johnson Controls Software Engineer Interview Questions and Answers

Updated 18 Oct 2024

6 Interview questions

A Software Engineer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of its nodes to point backwards.

  • 1. Initialize three pointers: prev (null), current (head), and next (null).

  • 2. Traverse the list: while current is not null, do the following:

  • a. Set next to current.next to save the next node.

  • b. Reverse the current node's pointer: current.next = prev.

  • c. Move prev and current one step forward: prev = current; current = n...

A Software Engineer was asked
Q. What are const and volatile keywords?
Ans. 

const prevents modification of a variable, while volatile indicates a variable may change unexpectedly.

  • const: Used to declare variables whose value cannot be changed after initialization. Example: 'const int x = 10;'

  • volatile: Used to inform the compiler that a variable may be changed by external factors. Example: 'volatile int flag;'

  • const can be applied to pointers: 'const int* ptr' means the value pointed to cann...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked
Q. Question based on your 4 years of experience.
Ans. 

This question assesses your problem-solving skills and technical knowledge as a software engineer.

  • Understand the problem clearly before attempting to solve it.

  • Break down the problem into smaller, manageable parts.

  • Consider edge cases and how they might affect your solution.

  • Use examples to illustrate your thought process, such as coding a simple algorithm.

  • Communicate your approach clearly and ask for feedback.

A Software Engineer was asked
Q. What strategies have you used to negotiate compensation, and what was the outcome?
Ans. 

Negotiating compensation can be challenging; understanding value and market standards is key to achieving desired outcomes.

  • Research industry standards: Understand the average salary for your role in your location.

  • Highlight your skills: Emphasize unique skills or experiences that add value to the company.

  • Be flexible: Consider other benefits like remote work, bonuses, or professional development opportunities.

  • Practi...

A Software Engineer was asked
Q. What is the difference between final, finally, and finalize?
Ans. 

final, finally, and finalize are keywords in Java with different meanings.

  • final is a keyword used to declare a constant value, a variable that cannot be modified.

  • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

  • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

  • final and fina...

What are the roles & responsibilities of a Software Engineer at Johnson Controls?

Software Development

  • Design, develop, and maintain web applications and services
  • Implement and manage CI/CD pipelines
  • Develop and execute unit tests and participate in integration testing

Read full roles & responsibilities

A Software Engineer was asked
Q. What are the key differences between C and Java?
Ans. 

C is a procedural language, while Java is an object-oriented language with automatic memory management.

  • C is a low-level language, providing more control over hardware; Java is high-level, focusing on portability and ease of use.

  • C uses pointers for memory management; Java uses references and has automatic garbage collection.

  • C is compiled to machine code, while Java is compiled to bytecode, which runs on the Java Vi...

Johnson Controls HR Interview Questions

51 questions and answers

Q. How do you hire good staff?
Q. How would you train your staff?
Q. Tell me about your internship experience.

Johnson Controls Software Engineer Interview Experiences

8 interviews found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. What technical skills you've learned so far in the college
  • Q2. Where do you see yourself in the next 5 years.
  • Q3. Reverse a linked list
  • Q4. General dbms, os, and cn questions

Interview Preparation Tips

Topics to prepare for Johnson Controls Software Engineer interview:
  • dsa
  • C++
  • computer networks
  • OS
  • sql
Interview preparation tips for other job seekers - just learn basics of computer fundamentals, and know about your project you mentioned in resume, and be good with normal dsa questions like arrays, strings, linked list, stacks and queues, and you should be good mostly

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

String manipulation of java based questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Why do you want to switch?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is const and volatile

Interview Preparation Tips

Interview preparation tips for other job seekers - Build your basics

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are your Skills?
  • Ans. 

    I have strong skills in programming languages such as Java, Python, and C++, as well as experience with database management and software development methodologies.

    • Proficient in Java, Python, and C++ programming languages

    • Experience with database management systems like MySQL and MongoDB

    • Familiarity with software development methodologies such as Agile and Scrum

  • Answered by AI
  • Q2. What is the current role & responsibilities
  • Ans. 

    As a Software Engineer, my current role involves designing, developing, testing, and maintaining software applications.

    • Designing software solutions based on client requirements

    • Developing code using programming languages like Java, Python, or C++

    • Testing software to ensure functionality and performance

    • Maintaining and updating existing software applications

    • Collaborating with team members to troubleshoot and resolve issues

    • ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards, ideally in the range of $X to $Y.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider your experience: If you have 5 years of experience, you might expect a higher salary than someone just starting.

    • Location matters: Salaries can vary significantly based o...

  • Answered by AI
  • Q2. General questions

Software Engineer Interview Questions & Answers

user image devyani mankar

posted on 10 Mar 2024

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

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Aura Basics, LWC basics, security model, apex triggers
Round 2 - HR 

(1 Question)

  • Q1. General questions about my education and previous experience, Salary discussion

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPs concepts, threading, SOLID principles
  • Q2. Design patterns, abstract class, interface
Round 2 - Technical 

(1 Question)

  • Q1. Soild principles, oops concepts
Round 3 - Technical 

(1 Question)

  • Q1. General programming questions, working style, how to handle a project
Round 4 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and support, fostering a strong sense of community and collaboration.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have two siblings; we often collaborate on projects, enhancing our problem-solving skills.

    • Family gatherings are frequent, where we share experiences and support each other's goals.

    • My grandparents played a si...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple interview technical questions

Interview Questionnaire 

3 Questions

  • Q1. Simple question as per 4 year of experience
  • Ans. 

    This question assesses your problem-solving skills and technical knowledge as a software engineer.

    • Understand the problem clearly before attempting to solve it.

    • Break down the problem into smaller, manageable parts.

    • Consider edge cases and how they might affect your solution.

    • Use examples to illustrate your thought process, such as coding a simple algorithm.

    • Communicate your approach clearly and ask for feedback.

  • Answered by AI
  • Q2. Same question asked by interviewer
  • Q3. Too much tried for negotiation and not gave expected compansession
  • Ans. 

    Negotiating compensation can be challenging; understanding value and market standards is key to achieving desired outcomes.

    • Research industry standards: Understand the average salary for your role in your location.

    • Highlight your skills: Emphasize unique skills or experiences that add value to the company.

    • Be flexible: Consider other benefits like remote work, bonuses, or professional development opportunities.

    • Practice ne...

  • Answered by AI

I appeared for an interview in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

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

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Graduated with a degree in Computer Science from XYZ University.

    • Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.

    • Proficient in languages like JavaScript, Python, and Java, with experience in frameworks such as React and Django.

    • Enjoy collaborating in ag...

  • Answered by AI
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
6d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Johnson Controls?
Ask anonymously on communities.

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: General resume shortlisting out of nearly 400 applicants. Shortlisted close to 150 students.

Round: Technical Interview
Experience: Mostly questions from the resume were asked. They just wanted to know the types of projects I had done.
Tips: Make sure you know everything about what you write in your resume.

Round: Technical Interview
Experience: Another round of technical interview. Questions were more focused on the kind of profile they were offering, mostly to judge whether you are right for the job or not.

Skills: Confidence, Core knowledge
College Name: IIT BOMBAY

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.

Johnson Controls Interview FAQs

How many rounds are there in Johnson Controls Software Engineer interview?
Johnson Controls interview process usually has 2 rounds. The most common rounds in the Johnson Controls interview process are Technical, HR and Coding Test.
How to prepare for Johnson Controls Software Engineer 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 Johnson Controls. The most common topics and skills that interviewers at Johnson Controls expect are Agile, Unit Testing, SQL, Troubleshooting and Javascript.
What are the top questions asked in Johnson Controls Software Engineer interview?

Some of the top questions asked at the Johnson Controls Software Engineer interview -

  1. Difference between final, finally and final...read more
  2. Too much tried for negotiation and not gave expected compansess...read more
  3. Simple question as per 4 year of experie...read more
What are the most common questions asked in Johnson Controls Software Engineer HR round?

The most common HR questions asked in Johnson Controls Software Engineer interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 5 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more
Join Johnson Controls Building smarter, safer and more sustainable communities
Johnson Controls Software Engineer Salary
based on 138 salaries
₹8.1 L/yr - ₹14.5 L/yr
19% more than the average Software Engineer Salary in India
View more details

Johnson Controls Software Engineer Reviews and Ratings

based on 39 reviews

4.4/5

Rating in categories

4.0

Skill development

4.3

Work-life balance

3.6

Salary

4.2

Job security

4.2

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 39 Reviews and Ratings
Software Engineer

Bangalore / Bengaluru

1-6 Yrs

₹ 5-13.8 LPA

Explore more jobs
Assistant Manager
1.3k salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Senior Executive
1.2k salaries
unlock blur

₹3.9 L/yr - ₹9 L/yr

Deputy Manager
771 salaries
unlock blur

₹8.3 L/yr - ₹12.5 L/yr

Manager
378 salaries
unlock blur

₹9.5 L/yr - ₹16.5 L/yr

Analyst
371 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Johnson Controls with

Siemens

4.0
Compare

Schneider Electric

4.1
Compare

Honeywell Automation

3.7
Compare

Rockwell Automation

3.7
Compare
write
Share an Interview