Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare
3.6

based on 2.8k Reviews

Filter interviews by

Johnson Controls Graduate Trainee Interview Questions and Answers

Updated 17 Dec 2024

Johnson Controls Graduate Trainee Interview Experiences

4 interviews found

Graduate Trainee Interview Questions & Answers

user image nikita sonnad

posted on 27 Sep 2024

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

Apptitude questions related to core

Round 2 - Technical 

(2 Questions)

  • Q1. About your self
  • Q2. About your projects
Round 3 - Technical 

(1 Question)

  • Q1. About your personality and behavoiur
Round 4 - HR 

(1 Question)

  • Q1. ..................................................mmmmmmm
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Smt Indira Gandhi Engineering College, Navi Mumbai and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was all about the basic control system and electrical

Round 2 - One-on-one 

(2 Questions)

  • Q1. Mostly ask about projects
  • Q2. And basic of control system what PID controller

Graduate Trainee Interview Questions Asked at Other Companies

asked in Flipkart
Q1. Given an array, how do you get the count of pairs that sum to eve ... read more
asked in TCS
Q2. Consonant Counting Problem Statement Given a string STR comprisin ... read more
asked in Freshworks
Q3. Valid Parentheses Problem Statement Given a string 'STR' consisti ... read more
asked in Freshworks
Q4. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q5. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Basic electronics 

(1 Question)

  • Q1. MCQ question contains 75 mcq
Round 2 - Technical 

(1 Question)

  • Q1. Technical round questions related to basic electronics
Round 3 - Technical 

(1 Question)

  • Q1. Advance technical interview related course you were studying
Round 4 - HR 

(1 Question)

  • Q1. About Location and family background
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Aptitude test is majority based on microcontroller and microprocessor...

Round 3 - Technical 

(1 Question)

  • Q1. Q1) what is the difference between BJT and FET
  • Ans. 

    BJT is a current-controlled device while FET is a voltage-controlled device.

    • BJT stands for Bipolar Junction Transistor, while FET stands for Field-Effect Transistor.

    • BJT is made of two PN junctions, while FET is made of a channel and two PN junctions.

    • BJT has higher gain and input impedance compared to FET.

    • FET has faster switching speeds and lower noise compared to BJT.

    • Examples of BJT include NPN and PNP transistors, whi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate level

Johnson Controls interview questions for designations

 Graduate Engineer Trainee (Get)

 (17)

 Graduate Engineer

 (2)

 Graduate Student

 (1)

 job Trainee

 (1)

 Management Trainee

 (1)

 Internship Trainee

 (1)

 Apprentice Trainee

 (1)

 Gradute Engineer Trainee

 (1)

Interview questions from similar companies

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

Test is about 1 hr and it contains 40 mcqs(both aptitude and coding)

Round 2 - Technical 

(2 Questions)

  • Q1. Level order traversal of binary tree
  • Ans. 

    Level order traversal of binary tree visits nodes level by level, from left to right.

    • Use a queue to keep track of nodes at each level

    • Start by pushing the root node into the queue

    • While the queue is not empty, dequeue a node, visit it, and enqueue its children

  • Answered by AI
  • Q2. Question related to OOPS concepts

Skills evaluated in this interview

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

I applied via campus placement at Ramaiah Institute of Technology, Bengaluru and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Online Assisment 

(2 Questions)

  • Q1. Technical related questions 30 questions for 30 min
  • Q2. Various appitude related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explanation about projects
  • Q2. Power systems and power electronics

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Got some aptitude question in the company side, and the candidates want to finish in the given time

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic question about my resume
  • Q2. Analytic questions and case study question to test my handling the situation skills
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Detail OOP concept with real life examples?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation: Objects can hide their internal state and require interaction through defined interfaces

    • Inheritance: Objects can inherit attributes and methods from parent classes

    • Polymorphism: Objects ...

  • Answered by AI
  • Q2. SQL query to find highest salary.
  • Ans. 

    Use SQL query with MAX function to find highest salary.

    • Use SELECT statement with MAX function to retrieve highest salary from salary column.

    • Example: SELECT MAX(salary) FROM employees;

    • Make sure to replace 'employees' with the actual table name where salary data is stored.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Change the odd bits in the binary form of a given number and convert the new binary into decimal form
  • Ans. 

    To change the odd bits in a binary number, flip the bits at odd positions and convert the new binary number to decimal form.

    • Start by converting the given number into binary form.

    • Identify the odd bits in the binary number (counting from right to left, starting at 1).

    • Flip the odd bits by changing 1s to 0s and 0s to 1s.

    • Convert the new binary number into decimal form.

    • For example, if the given number is 13 (binary 1101), th...

  • Answered by AI
  • Q2. Primary vs secondary memory
  • Ans. 

    Primary memory is volatile and directly accessible by the CPU, while secondary memory is non-volatile and used for long-term storage.

    • Primary memory is faster but has limited capacity, while secondary memory is slower but has larger capacity.

    • Examples of primary memory include RAM and cache memory, while examples of secondary memory include hard drives and SSDs.

    • Primary memory stores data that is currently being used by t...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were logical reasoning and critical thinking along with mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Technical interview related to your field of study
  • Q2. About my college project
  • Q3. Basics of cad and uses of creo
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join the company and what are your expectation

Johnson Controls Interview FAQs

How many rounds are there in Johnson Controls Graduate Trainee interview?
Johnson Controls interview process usually has 3-4 rounds. The most common rounds in the Johnson Controls interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Johnson Controls Graduate Trainee 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 Advanced Excel, Analytical skills, Business Communication, Customer Service and Data Analysis.
What are the top questions asked in Johnson Controls Graduate Trainee interview?

Some of the top questions asked at the Johnson Controls Graduate Trainee interview -

  1. Q1) what is the difference between BJT and ...read more
  2. and basic of control system what PID control...read more
  3. Technical round questions related to basic electron...read more

Tell us how to improve this page.

Johnson Controls Graduate Trainee Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
Johnson Controls Graduate Trainee Salary
based on 9 salaries
₹3 L/yr - ₹8.5 L/yr
57% more than the average Graduate Trainee Salary in India
View more details

Johnson Controls Graduate Trainee Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

3.7

Skill development

4.1

Work-life balance

4.1

Salary

4.1

Job security

4.1

Company culture

3.7

Promotions

4.1

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Manager
1.2k salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Senior Executive
1.1k salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Deputy Manager
640 salaries
unlock blur

₹6.8 L/yr - ₹12.6 L/yr

Manager
353 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Applications Engineer
348 salaries
unlock blur

₹3.7 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Johnson Controls with

Siemens

4.1
Compare

Honeywell Automation

3.8
Compare

Schneider Electric

4.2
Compare

ABB

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