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

Filter interviews by

Johnson Controls Accounts Analyst Interview Questions and Answers

Updated 17 Apr 2022

Johnson Controls Accounts Analyst Interview Experiences

2 interviews found

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Tell me about yourself.
  • Q3. Why should we hire you?
  • Q4. Share details of your previous job.
  • Q5. What are your salary expectations?
Round 2 - Technical 

(1 Question)

  • Q1. About process and ERP and process knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - The main focus in interview is for about the past experience and previous process knowledge.

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include attention to detail, analytical skills, and ability to work under pressure. My weaknesses are public speaking and time management.

    • Strength: Attention to detail - I have a keen eye for spotting errors and discrepancies in financial statements.

    • Strength: Analytical skills - I am proficient in using Excel and other financial software to analyze data and generate reports.

    • Strength: Ability to work under ...

  • Answered by AI
  • Q2. Tell me about yourself.
  • Ans. 

    I am an experienced Accounts Analyst with a strong background in financial analysis and reporting.

    • I have a Bachelor's degree in Accounting and Finance.

    • I have worked for 5 years in the finance department of a multinational company.

    • I am skilled in financial statement analysis, budgeting, and forecasting.

    • I have experience using accounting software such as QuickBooks and Excel.

    • I am detail-oriented, analytical, and have exc

  • Answered by AI
  • Q3. Why should we hire you?
  • Ans. 

    I have a strong background in accounting and financial analysis, with a proven track record of delivering accurate and insightful reports.

    • I have a Bachelor's degree in Accounting and have completed relevant certifications such as CPA.

    • I have 5 years of experience working as an Accounts Analyst, where I successfully managed financial data and provided valuable insights to support decision-making.

    • I am highly skilled in fi...

  • Answered by AI
  • Q4. Share details of your previous job.
  • Ans. 

    I worked as an Accounts Analyst at XYZ Company.

    • Managed financial data and performed analysis to support decision-making

    • Prepared financial reports and statements

    • Assisted in budgeting and forecasting processes

    • Conducted variance analysis to identify trends and areas of improvement

    • Collaborated with cross-functional teams to ensure accurate financial information

    • Implemented process improvements to enhance efficiency

    • Utilized ...

  • Answered by AI
  • Q5. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and requirements of the position.

    • I believe that compensation should be fair and competitive within the industry.

    • I am open to negotiation and would like to learn more about the specific responsibilities and expectations of the role.

    • I am confident that my skills and experience make me a valuable asset to the company, and I am looking for a salary that reflects ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. About process and ERP and process knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - The main focus in interview is for about the past experience and previous process knowledge.

Accounts Analyst Interview Questions Asked at Other Companies

Q1. What is Accounts payable and how can you process and how can you ... read more
Q2. How to use pivot table , hlookup and vlookup , solved a problem i ... read more
Q3. Accounting entry of rent forgive
asked in PIMCO
Q4. What factors can affect interest rate?
Q5. What is bills payable?

Accounts Analyst Jobs at Johnson Controls

View all

What people are saying about Johnson Controls

View All
purewasp
Verified Icon
2w
works at
Johnson Controls
How is job security in Cornerstone as Manager Order Validation in Pune?
Got a question about Johnson Controls?
Ask anonymously on communities.

Interview questions from similar companies

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.

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 appeared for an interview in Sep 2017.

Interview Questionnaire 

2 Questions

  • Q1. Sorting algorithm
  • Ans. 

    A sorting algorithm is a method of arranging elements in a specific order.

    • Sorting algorithms can be categorized as comparison-based or non-comparison-based.

    • Common sorting algorithms include bubble sort, insertion sort, selection sort, merge sort, quicksort, and heapsort.

    • Efficiency of sorting algorithms is measured by their time complexity, space complexity, and stability.

    • Example: Sorting an array of strings in alphabet

  • Answered by AI
  • Q2. Intro, why should i hire you?, inspiration from?

Interview Preparation Tips

Round: Test
Experience: An online aptitude test was taken.
Tips: Should have the knowledge regarding technical.
Duration: 1 hour
Total Questions: 45

Round: Technical Interview
Experience: Should explain the interviewer each and every detail regarding that algorithm.
Tips: Should have basic knowledge about the subject mentioned in the Area of interest column.

Round: HR Interview
Experience: Just be confident. And always praise yourself.

Skills: Technical Skill, Inter Person Communication Skills
College Name: Mody University Of Science And Technology, Sikar

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2017. There were 8 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Technical Interview on Power Systems/Switchgear & Control System. Detailed discussion on Switchgear and Protection. Discussion on IEC and IS standards.
  • Q2. HR interview on experience and Pay scale
  • Q3. Detailed discussion on experience and expectations.
  • Q4. Baground & Certificate verification

Interview Preparation Tips

Round: Resume Shortlist
Experience: Engineering Degree & Suitable profile

Round: Group Discussion
Experience: Topic : Switchgear & Control System.

I have actively participated in technical discussion.

Round: Second level of technical round with higher authority
Experience: Details analysis on market segment

Round: Case Study Interview
Experience: Case study on my interest and profile interested in.

General Tips: Prepare and answer correctly to the questions you asked, do not lead interviewer in wrong way. Interviewers will easily guess what we are delivering.

Be 100% interested on your profile & role, Don't attend interview for the shake of job.

Skills: Technical Knowledge(ML, Communication, Body Language, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-3 Months

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Design fan.What is bm? What is nozzle?
  • Ans. 

    BM stands for Blade Material. Nozzle is a device that directs or controls the flow of a fluid.

    • BM refers to the material used to make the blades of a fan. It can be plastic, metal, or wood.

    • Nozzle is a component that is used to control the flow of a fluid, such as air or water. It can be found in various devices, such as a garden hose or a spray bottle.

    • In a fan, the nozzle is the part that directs the air flow in a speci...

  • Answered by AI
  • Q2. Design blower for industry
  • Ans. 

    Designing a blower for industrial use requires consideration of factors such as air flow rate, pressure, power consumption, and noise level.

    • Determine the required air flow rate and pressure for the specific application

    • Select an appropriate blower type (centrifugal, axial, etc.) based on the requirements

    • Calculate the power consumption and efficiency of the blower

    • Consider noise level and implement noise reduction measure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm and confident
Round 1 - Personal Interview 

(1 Question)

  • Q1. Questions bases on your resume and projects

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

Johnson Controls Interview FAQs

How many rounds are there in Johnson Controls Accounts Analyst interview?
Johnson Controls interview process usually has 2 rounds. The most common rounds in the Johnson Controls interview process are HR and Technical.
How to prepare for Johnson Controls Accounts Analyst 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 OTC, Process Improvement, BPO, Oracle and Analytical Skills.

Tell us how to improve this page.

Join Johnson Controls Building smarter, safer and more sustainable communities

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 425 Interviews
Falcon Autotech Interview Questions
3.9
 • 45 Interviews
Wipro PARI Interview Questions
3.3
 • 44 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 34 Interviews
View all
Johnson Controls Accounts Analyst Salary
based on 13 salaries
₹3.3 L/yr - ₹6.2 L/yr
13% less than the average Accounts Analyst Salary in India
View more details

Johnson Controls Accounts Analyst Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

4.5

Skill development

4.3

Work-life balance

4.7

Salary

4.7

Job security

4.4

Company culture

4.4

Promotions

4.3

Work satisfaction

Explore 3 Reviews and Ratings
OTC Contract Accounting Analyst

Gurgaon / Gurugram

5-6 Yrs

Not Disclosed

Explore more jobs
Assistant Manager
1.3k salaries
unlock blur

₹4.2 L/yr - ₹11.4 L/yr

Senior Executive
1.1k salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Deputy Manager
692 salaries
unlock blur

₹6.6 L/yr - ₹13 L/yr

Manager
351 salaries
unlock blur

₹6.5 L/yr - ₹19 L/yr

Applications Engineer
342 salaries
unlock blur

₹3.3 L/yr - ₹12 L/yr

Explore more salaries
Compare Johnson Controls with

Siemens

4.1
Compare

Schneider Electric

4.1
Compare

Honeywell Automation

3.8
Compare

Rockwell Automation

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