Add office photos
Engaged Employer

Johnson Controls

3.6
based on 2.7k Reviews
Filter interviews by

100+ Interview Questions and Answers

Updated 14 Dec 2024
Popular Designations

Q1. How to check for continuity for a wire inside a wall if the starting and end points are available to you.

Ans.

To check continuity of a wire inside a wall, use a multimeter and connect it to the starting and end points of the wire.

  • Turn off power to the circuit before testing

  • Set the multimeter to continuity mode

  • Connect one probe to the starting point and the other to the end point

  • If the multimeter beeps or shows a reading, the wire has continuity

  • If there is no continuity, the wire may be broken or disconnected

View 13 more answers

Q2. What is object oriented programming language? And what is procedural language?

Ans.

Object-oriented programming is a programming paradigm that uses objects to represent and manipulate data. Procedural programming is a programming paradigm that uses procedures or functions to structure the program.

  • Object-oriented programming focuses on objects and their interactions.

  • Procedural programming focuses on procedures or functions.

  • In object-oriented programming, data and behavior are encapsulated within objects.

  • In procedural programming, data and behavior are separat...read more

View 3 more answers

Q3. What are Universal Gates and draw OR gate from one Universal Gate?

Ans.

Universal Gates are gates that can be used to implement any logic function. OR gate can be drawn from a Universal Gate.

  • Universal Gates include NAND and NOR gates

  • NAND and NOR gates can be used to implement any logic function

  • OR gate can be drawn from a NAND gate by connecting both inputs together

  • OR gate can be drawn from a NOR gate by connecting both inputs together and inverting the output

View 1 answer

Q4. What is the use of counter and How it is different from Shift registers.

Ans.

Counters are used to count the number of clock pulses and generate output signals. Shift registers are used to store and shift data.

  • Counters are sequential circuits that count the number of clock pulses and generate output signals.

  • They can be used in applications such as frequency dividers, event counters, and timers.

  • Shift registers are used to store and shift data in a serial manner.

  • They can be used in applications such as data storage, data transfer, and parallel-to-serial ...read more

Add your answer
Discover null interview dos and don'ts from real experiences

Q5. What is the difference between RDBMS and DBMS? Give examples.

Ans.

RDBMS is a type of DBMS that stores data in a structured manner using tables and enforces relationships between them.

  • DBMS is a software system that manages databases, while RDBMS is a specific type of DBMS.

  • RDBMS uses a tabular structure to store data, with each table consisting of rows and columns.

  • RDBMS enforces the ACID properties (Atomicity, Consistency, Isolation, Durability) to ensure data integrity.

  • RDBMS supports SQL (Structured Query Language) for managing and manipulat...read more

Add your answer

Q6. Difference between Servomotor and Stepper Motor

Ans.

Servomotor and stepper motor are both used for precise control of motion, but differ in their operation and applications.

  • Servomotors use feedback control to maintain a specific position or speed, while stepper motors move in discrete steps.

  • Servomotors are typically used in applications requiring high precision and accuracy, such as robotics and CNC machines.

  • Stepper motors are commonly used in applications requiring precise positioning, such as 3D printers and linear actuators...read more

Add your answer
Are these interview questions helpful?

Q7. What is the difference between early binding and late binding?

Ans.

Early binding and late binding are two different approaches to linking functions or methods to their respective code.

  • Early binding is done at compile-time, where the function call is resolved before the program is executed.

  • Late binding is done at runtime, where the function call is resolved during the program's execution.

  • Early binding provides better performance as the function call is already resolved.

  • Late binding allows for more flexibility as the function call can be deter...read more

Add your answer

Q8. What are primary key, candidate key, composite key?

Ans.

Primary key is a unique identifier for a record in a database table. Candidate key is a potential primary key. Composite key is a combination of two or more columns to uniquely identify a record.

  • Primary key uniquely identifies a record in a table

  • Candidate key is a potential primary key that can be chosen as the primary key

  • Composite key is a combination of two or more columns to uniquely identify a record

  • Example: In a table of students, the student ID can be the primary key, w...read more

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. How many classes are there in C? Explain.

Ans.

There are no classes in C as it is a procedural programming language.

  • C is a procedural programming language, not an object-oriented one.

  • It does not have the concept of classes or objects.

  • Instead, it uses functions and structures to organize code.

  • Structures can be used to create user-defined data types.

  • For example, a structure can be defined to represent a person with attributes like name, age, and address.

Add your answer

Q10. What is Big Data? (Winter training on Big Data)

Ans.

Big Data refers to large and complex datasets that cannot be easily managed or processed using traditional data processing techniques.

  • Big Data is characterized by the 3Vs: Volume, Velocity, and Variety.

  • Volume refers to the vast amount of data generated and collected from various sources.

  • Velocity refers to the speed at which data is generated and needs to be processed in real-time.

  • Variety refers to the different types and formats of data, including structured, unstructured, an...read more

Add your answer

Q11. What letters are sent out for Collection? What legal actions are taken?

Ans.

Letters for collection and legal actions taken as Assistant Manager

  • Letters sent for collection include demand letters, reminder letters, and final notice letters

  • Legal actions taken may include filing a lawsuit, obtaining a judgment, and garnishing wages or bank accounts

  • The specific actions taken depend on the amount owed, the debtor's response, and the company's policies and procedures

  • Communication with debtors should be professional and respectful, while also firm and persis...read more

View 2 more answers

Q12. Draw Jhonson Counter and explain its working?

Ans.

Johnson Counter is a digital circuit that counts in a cyclic pattern.

  • It is a type of shift register with feedback

  • It has a sequence of n bits that cycle through 2^n-1 states

  • It is used in digital clocks, frequency dividers, and memory address decoding

  • Example: 4-bit Johnson counter has a sequence of 0001, 0010, 0100, 1000, 0001, ...

  • It can be implemented using D flip-flops or JK flip-flops

Add your answer

Q13. What are abstract methods? Why do we use them?

Ans.

Abstract methods are methods without implementation. They are used to enforce implementation by subclasses.

  • Abstract methods are declared with the 'abstract' keyword and end with a semicolon instead of a method body.

  • They are used in abstract classes to enforce implementation by subclasses.

  • Subclasses must provide an implementation for all abstract methods or be declared as abstract themselves.

  • Abstract methods are useful for creating a common interface for a group of related cla...read more

Add your answer

Q14. How can we analyse this huge volume of data?

Ans.

Data can be analyzed by using various techniques such as data mining, machine learning, and statistical analysis.

  • Use data mining techniques to discover patterns and relationships in the data

  • Apply machine learning algorithms to make predictions and classifications

  • Utilize statistical analysis to identify trends and draw conclusions

  • Use visualization tools to present the data in a meaningful way

  • Employ parallel processing and distributed computing to handle the large volume of dat...read more

Add your answer

Q15. What is the difference between C and C++?

Ans.

C is a procedural programming language while C++ is an extension of C with added features of object-oriented programming.

  • C is a procedural language, while C++ supports both procedural and object-oriented programming.

  • C++ has additional features like classes, objects, inheritance, and polymorphism.

  • C++ supports exception handling and templates, which are not available in C.

  • C++ allows function overloading and operator overloading, which are not supported in C.

  • C++ has a standard t...read more

Add your answer

Q16. What's modulation? Why is it required?

Ans.

Modulation is the process of varying a carrier signal's properties to transmit information efficiently.

  • Modulation is used to transmit information over long distances.

  • It allows multiple signals to be transmitted simultaneously without interference.

  • Modulation helps in improving the signal quality and reducing noise.

  • Different modulation techniques include amplitude modulation (AM), frequency modulation (FM), and phase modulation (PM).

  • For example, FM modulation is used in radio b...read more

Add your answer

Q17. Different between latches and flip flop

Ans.

Latches and flip flops are sequential logic circuits used to store data. Flip flops are edge-triggered while latches are level-triggered.

  • Latches are level-triggered and can be transparent or opaque

  • Flip flops are edge-triggered and can be positive or negative edge-triggered

  • Latches are simpler and faster than flip flops

  • Flip flops are more reliable and less prone to glitches than latches

  • Examples of latches include SR latch, D latch, and JK latch

  • Examples of flip flops include SR ...read more

View 2 more answers

Q18. Different analog to digital conversation techniques

Ans.

Analog to digital conversion techniques include pulse code modulation, delta modulation, and sigma-delta modulation.

  • Pulse code modulation (PCM) samples the analog signal at regular intervals and quantizes each sample into a binary code.

  • Delta modulation (DM) approximates the slope of the analog signal and encodes the difference between the approximated value and the actual value.

  • Sigma-delta modulation (SDM) oversamples the analog signal and uses a feedback loop to reduce quant...read more

Add your answer

Q19. Why 8085 is called 8 bit processor

Ans.

8085 is called 8 bit processor because it can process 8 bits of data at a time.

  • 8085 has an 8-bit data bus and can process 8 bits of data at a time

  • It has an 8-bit accumulator and can perform arithmetic and logical operations on 8-bit data

  • It has 16-bit address bus which can address up to 64 KB of memory

  • Examples of 8-bit processors include Intel 8080, Zilog Z80, and MOS Technology 6502

Add your answer

Q20. Why do we use functions in a program?

Ans.

Functions are used in a program to modularize code, improve code reusability, enhance readability, and simplify debugging.

  • Functions help break down complex tasks into smaller, manageable parts.

  • They promote code reusability by allowing the same code to be used multiple times.

  • Functions enhance code readability by organizing code into logical blocks.

  • They simplify debugging as errors can be isolated and fixed within a specific function.

  • Functions enable collaboration by allowing d...read more

Add your answer

Q21. What is abstract class in Java?

Ans.

An abstract class in Java is a class that cannot be instantiated and is used as a blueprint for other classes.

  • An abstract class can have both abstract and non-abstract methods.

  • It can have abstract methods without any implementation.

  • It can also have non-abstract methods with implementation.

  • Abstract classes are meant to be extended by other classes.

  • To use an abstract class, it must be extended and its abstract methods must be implemented.

Add your answer

Q22. Different flags in 8086 and its high and low condition

Ans.

Flags in 8086 and their high and low conditions

  • 8086 has 9 flags: Carry, Parity, Auxiliary Carry, Zero, Sign, Trap, Interrupt, Direction, Overflow

  • Flags can be set or reset based on the result of arithmetic and logical operations

  • High condition means the flag is set, while low condition means the flag is reset

Add your answer

Q23. Draw block diagram of PID controller

Ans.

A PID controller is a feedback control loop that calculates an error value as the difference between a desired setpoint and a measured process variable.

  • The block diagram of a PID controller consists of three main components: the proportional, integral, and derivative terms.

  • The proportional term produces an output that is proportional to the error signal.

  • The integral term produces an output that is proportional to the integral of the error signal over time.

  • The derivative term ...read more

Add your answer

Q24. Find equivalent resistance of the given circuit

Ans.

Find equivalent resistance of the given circuit

  • Identify series and parallel connections

  • Use Ohm's law to calculate individual resistances

  • Combine resistances using series and parallel rules

  • Final answer should be in Ohms

Add your answer

Q25. What is P2P? Golden rules of accounts with examples? What is invoice? What is the Life cycle accounts payable? Difference between accounts and finance?

Ans.

P2P is Procure-to-Pay, a process of purchasing goods and services and paying for them. Accounts and finance are different but related.

  • Golden rules of accounts are Real, Personal, Nominal, Debit what comes in, Credit what goes out.

  • Examples of Real accounts are land, building, machinery. Personal accounts are accounts of individuals, firms, companies. Nominal accounts are accounts of expenses, losses, gains.

  • An invoice is a document that lists the goods or services provided and ...read more

Add your answer

Q26. Difference between Microprocessor and microcontroller

Ans.

Microprocessor is a single chip CPU while microcontroller is a complete computer on a chip.

  • Microprocessor is used in general purpose computing while microcontroller is used in embedded systems.

  • Microprocessor has limited on-chip peripherals while microcontroller has on-chip peripherals like timers, ADC, etc.

  • Microprocessor requires external memory and peripherals while microcontroller has them on-chip.

  • Examples of microprocessors are Intel Pentium, AMD Ryzen while examples of mi...read more

Add your answer

Q27. Draw and explain different terminal of BJT

Ans.

Explanation of different terminals of BJT

  • BJT has three terminals: emitter, base, and collector

  • Emitter is heavily doped and has the highest concentration of charge carriers

  • Base is lightly doped and controls the flow of charge carriers from emitter to collector

  • Collector is moderately doped and collects the charge carriers from the base

  • The direction of current flow is from emitter to collector

Add your answer

Q28. What does program counter do?

Ans.

The program counter is a register that keeps track of the next instruction to be executed in a computer program.

  • The program counter is a special register in a computer's central processing unit (CPU).

  • It holds the memory address of the next instruction to be executed.

  • After each instruction is executed, the program counter is incremented to point to the next instruction.

  • In case of conditional or unconditional jumps, the program counter is updated to the new memory address.

  • The p...read more

Add your answer

Q29. What is multivibrator?

Ans.

A multivibrator is an electronic circuit that generates a continuous output waveform of a specified shape and frequency.

  • Multivibrators are used in various applications such as timing circuits, frequency dividers, and waveform generators.

  • There are three types of multivibrators: astable, monostable, and bistable.

  • Astable multivibrators produce a continuous square wave output with no stable state.

  • Monostable multivibrators generate a single output pulse of a specific duration when...read more

Add your answer

Q30. Types of Transducers?

Ans.

Transducers are devices that convert one form of energy into another. They are used in various fields including engineering and medicine.

  • Electrical transducers convert electrical signals into physical quantities and vice versa. Example: thermocouples.

  • Mechanical transducers convert mechanical energy into electrical signals and vice versa. Example: strain gauges.

  • Optical transducers convert light energy into electrical signals and vice versa. Example: photodiodes.

  • Chemical transd...read more

View 1 answer

Q31. Difference between latch and flip flop.

Ans.

A latch is level-sensitive and stores data as long as the enable signal is active, while a flip flop is edge-triggered and stores data only on the rising or falling edge of the clock signal.

  • Latches are level-sensitive, while flip flops are edge-triggered.

  • Latches store data as long as the enable signal is active, while flip flops store data only on the rising or falling edge of the clock signal.

  • Latches are simpler and have lower power consumption compared to flip flops.

  • Flip fl...read more

Add your answer

Q32. Draw XOR gate write truth table

Ans.

Draw XOR gate truth table

  • XOR gate has two inputs and one output

  • Output is 1 only if inputs are different

  • Truth table: 0 XOR 0 = 0, 0 XOR 1 = 1, 1 XOR 0 = 1, 1 XOR 1 = 0

Add your answer

Q33. What is transistor its use and working

Ans.

Transistor is a semiconductor device used for amplification and switching of electronic signals.

  • Transistor is made up of three layers of semiconductor material - P-type, N-type, and P-type.

  • It has three terminals - emitter, base, and collector.

  • Transistor can be used as an amplifier to increase the strength of a weak signal.

  • It can also be used as a switch to turn a circuit on or off.

  • Transistors are used in various electronic devices such as radios, televisions, computers, and m...read more

Add your answer

Q34. No of intrupts in 8085. Explain all

Ans.

8085 has 5 interrupts. TRAP, RST 7.5, RST 6.5, RST 5.5, INTR

  • 8085 has 5 interrupts: TRAP, RST 7.5, RST 6.5, RST 5.5, INTR

  • TRAP is a non-maskable interrupt

  • RST 7.5, RST 6.5, and RST 5.5 are maskable interrupts

  • INTR is a maskable interrupt and can be enabled or disabled by setting the interrupt enable flip-flop

  • Interrupts are used to handle external events and improve the efficiency of the system

Add your answer

Q35. Draw any counter using D-flip flip

Ans.

A D-flip flop can be used to create a counter by connecting the output of one flip flop to the input of the next.

  • Connect the output of one D-flip flop to the input of the next

  • Use the clock signal to trigger the flip flops

  • Set the initial value of the counter

  • Use additional logic gates if necessary to control the counter behavior

Add your answer

Q36. How do you explain cash application?

Ans.

Cash application is the process of recording and applying payments received from customers to their outstanding invoices.

  • It involves matching payments received to the correct customer account and invoice.

  • It ensures accurate and timely recording of customer payments.

  • It helps in maintaining up-to-date accounts receivable records.

  • Examples include using accounting software to record payments and reconcile bank statements.

  • It is an important function in managing cash flow and maint...read more

View 1 answer

Q37. Where you gonna see yourself after 5yrs? What is balance sheet? Etc..

Ans.

In 5 years, I see myself as a successful Accounts Executive, having gained valuable experience and contributing to the growth of the company.

  • I plan to continue learning and growing in my role as an Accounts Executive

  • I hope to have taken on additional responsibilities and contributed to the success of the company

  • I aim to have built strong relationships with clients and colleagues

  • A balance sheet is a financial statement that shows a company's assets, liabilities, and equity at ...read more

Add your answer

Q38. What are functions?

Ans.

Functions are blocks of code that perform a specific task and can be reused throughout a program.

  • Functions are used to break down a program into smaller, manageable parts.

  • They improve code reusability and modularity.

  • Functions can take input parameters and return output values.

  • Examples of functions include calculating the square root of a number or sorting an array.

Add your answer

Q39. What is VFD in Induction Motor

Ans.

VFD stands for Variable Frequency Drive which is used to control the speed of an induction motor.

  • VFD is an electronic device that controls the frequency and voltage supplied to an induction motor.

  • It can be used to vary the speed of the motor as per the requirement.

  • VFDs are commonly used in industries to save energy and improve efficiency.

  • They can also be used to reduce mechanical stress on the motor and increase its lifespan.

  • Example: A VFD can be used to control the speed of ...read more

Add your answer

Q40. What is foreign key?

Ans.

A foreign key is a column or a set of columns in a database table that refers to the primary key of another table.

  • Foreign keys establish relationships between tables in a relational database.

  • They ensure referential integrity and maintain data consistency.

  • Foreign keys can be used to enforce constraints and enable cascading updates or deletes.

  • They allow data from multiple tables to be linked together based on common values.

  • Foreign keys are typically used in database normalizati...read more

Add your answer

Q41. What is Rosov, dbbv, BQD, Barrigade logic, PLC, SCADA

Ans.

Rosov, dbbv, BQD, Barrigade logic, PLC, SCADA are all related to engineering and automation.

  • Rosov is a type of valve used in the oil and gas industry.

  • dbbv stands for Double Block and Bleed Valve, used to isolate sections of a pipeline.

  • BQD is a type of circuit breaker used in electrical systems.

  • Barrigade logic is a type of control system used in industrial automation.

  • PLC stands for Programmable Logic Controller, used to automate industrial processes.

  • SCADA stands for Supervisor...read more

Add your answer

Q42. Are you familiar with Power BI and Tableau?

Ans.

Yes, I am familiar with both Power BI and Tableau.

  • I have used Power BI and Tableau extensively in my previous job.

  • I am proficient in creating interactive dashboards and visualizations using both tools.

  • I have experience in connecting to various data sources and transforming data for analysis.

  • I am comfortable with creating calculated fields and measures to derive insights from data.

  • I have also worked with Power BI and Tableau APIs to automate report generation and distribution.

View 1 answer

Q43. What is difference between billed and unbilled

Ans.

Billed refers to the amount that has been charged to the customer and is due for payment, while unbilled refers to the amount that has been incurred but not yet charged to the customer.

  • Billed amount is already invoiced and due for payment, while unbilled amount is yet to be invoiced.

  • Billed amount is included in the company's revenue, while unbilled amount is not.

  • Unbilled amount can be a liability for the company until it is invoiced and collected.

  • Examples of billed amount inc...read more

Add your answer

Q44. Different operating region of BJT

Ans.

BJT has three operating regions: active, saturation, and cutoff.

  • Active region: both junctions are forward-biased.

  • Saturation region: both junctions are reverse-biased.

  • Cutoff region: base-emitter junction is reverse-biased and base-collector junction is forward-biased.

  • BJT operates as an amplifier in the active region.

  • BJT operates as a switch in the saturation and cutoff regions.

Add your answer

Q45. What kind of variance do you see while doing Intercompany reconciliation?

Ans.

Variances in Intercompany reconciliation can arise due to differences in accounting methods, timing of transactions, currency exchange rates, and intercompany agreements.

  • Differences in accounting methods used by different entities within the same company

  • Timing discrepancies in recording transactions between intercompany entities

  • Currency exchange rate fluctuations affecting the value of intercompany transactions

  • Lack of clear intercompany agreements leading to misunderstandings...read more

Add your answer

Q46. Functioning of op-amp

Ans.

Op-amp is an electronic device that amplifies the difference between two input voltages.

  • Op-amp stands for operational amplifier.

  • It has a high gain and can amplify signals.

  • It has two input terminals, one inverting and one non-inverting.

  • The output voltage is the amplification of the voltage difference between the input terminals.

  • Op-amps are widely used in various applications such as amplifiers, filters, oscillators, and comparators.

Add your answer

Q47. 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 has a higher gain and faster switching speed than FET.

  • FET has a higher input impedance and lower noise than BJT.

  • BJT is commonly used in low-power applications while FET is commonly used in high-power applications.

  • Examples of BJT include NPN and PNP transistors while examples of FET include JFET and MOSFET.

Add your answer

Q48. things you look in moulds

Ans.

I look for quality, durability, and precision in moulds.

  • Quality of the material used in the mould

  • Durability of the mould to withstand repeated use

  • Precision in the mould's design and manufacturing process

  • Ability to produce consistent and accurate parts

  • Ease of maintenance and repair

  • Compatibility with the intended manufacturing process

View 1 answer

Q49. Draw Npn aur pnp transistor

Ans.

NPN and PNP transistors are drawn using three layers of semiconductor material.

  • Draw two vertical lines representing the two outer layers of the transistor.

  • Draw a diagonal line connecting the top of the left line to the bottom of the right line for NPN transistor.

  • Draw a diagonal line connecting the top of the right line to the bottom of the left line for PNP transistor.

  • Add arrows to indicate the direction of current flow.

  • Label the emitter, base, and collector for each transist...read more

Add your answer

Q50. Types of Capacitors and Dielectric

Ans.

Capacitors are electronic components that store energy in an electric field. There are different types of capacitors based on their dielectric material.

  • Types of capacitors include ceramic, electrolytic, tantalum, film, and paper capacitors.

  • Dielectric materials used in capacitors include ceramic, aluminum oxide, tantalum pentoxide, polyester, and polypropylene.

  • Ceramic capacitors are commonly used in high-frequency circuits, while electrolytic capacitors are used in power suppl...read more

Add your answer

Q51. Do you have B2B Experience in order to cash?

Ans.

Yes, I have extensive B2B experience in order to cash.

  • I have worked as a sales representative for a B2B company for 3 years

  • I have managed accounts payable and receivable for a B2B company for 2 years

  • I have experience negotiating payment terms and resolving payment disputes with B2B clients

  • I am familiar with B2B invoicing and payment processing systems such as SAP and Oracle

Add your answer

Q52. Explain PID controller

Ans.

PID controller is a feedback control mechanism used in engineering to regulate a system's output.

  • PID stands for Proportional-Integral-Derivative

  • It continuously calculates an error value as the difference between a desired setpoint and a measured process variable

  • The controller then adjusts the output to minimize the error

  • Proportional control responds to the current error, integral control responds to the error over time, and derivative control responds to the rate at which the...read more

Add your answer

Q53. What is Silicon Controlled Rectifier

Ans.

A Silicon Controlled Rectifier (SCR) is a type of semiconductor device used for controlling electric power.

  • SCR is a three-terminal device that acts as a switch, conducting current only when a specific gate signal is applied.

  • It is commonly used in power control applications such as motor speed control, lighting control, and power supply regulation.

  • SCRs are known for their high reliability, long lifespan, and ability to handle high current and voltage levels.

  • Once triggered, an ...read more

Add your answer

Q54. Features of OOP?

Ans.

OOP is a programming paradigm that uses objects to represent and manipulate data and behavior.

  • Encapsulation: bundling data and methods together in a class

  • Inheritance: creating new classes from existing ones

  • Polymorphism: using a single interface to represent different types

  • Abstraction: simplifying complex systems by breaking them into smaller, manageable parts

Add your answer

Q55. Types of Induction Motor

Ans.

There are two main types of induction motors: squirrel cage induction motors and wound rotor induction motors.

  • Squirrel cage induction motors have a simple and robust construction, with a rotor consisting of bars shorted at both ends.

  • Wound rotor induction motors have a rotor with three windings connected to slip rings, allowing external resistors to be connected for improved control.

  • Other types of induction motors include single-phase induction motors, double squirrel cage ind...read more

View 1 answer

Q56. How many types of chillers I have handled. Ans: Screw, Centrifugal & Scroll.

Ans.

I have handled three types of chillers: Screw, Centrifugal, and Scroll.

  • I have experience working with Screw, Centrifugal, and Scroll chillers.

  • I am familiar with the maintenance and operation of these types of chillers.

  • For example, I have worked with a 200-ton Centrifugal chiller at my previous job.

Add your answer

Q57. How to choose voice alarm system in a building and justify

Ans.

Choose voice alarm system based on building size, occupancy, layout, and emergency response requirements.

  • Consider building size and layout to determine coverage area

  • Evaluate occupancy levels to ensure system can reach all occupants

  • Assess emergency response requirements to determine necessary features

  • Choose a system with clear and intelligible voice messages for effective communication

  • Ensure system complies with relevant regulations and standards, such as NFPA 72

  • Consider integ...read more

Add your answer

Q58. how to calculate cycle time for cnc machining

Ans.

Cycle time for CNC machining can be calculated using the formula: cycle time = (total cutting time + tool change time + setup time + inspection time) / total parts

  • Total cutting time is the time taken to complete the machining process for one part

  • Tool change time is the time taken to change the tool between different operations

  • Setup time is the time taken to set up the machine for the machining process

  • Inspection time is the time taken to inspect the finished part

  • Total parts is...read more

Add your answer

Q59. What are the steps of contract creation?

Ans.

The steps of contract creation involve offer, acceptance, consideration, and mutual agreement.

  • Offer: One party proposes terms to another party.

  • Acceptance: The other party agrees to the terms proposed.

  • Consideration: Both parties exchange something of value.

  • Mutual agreement: Both parties come to a meeting of the minds.

  • Drafting: The contract is written and reviewed by both parties.

  • Execution: Both parties sign the contract.

  • Enforcement: The contract is legally binding and can be e...read more

Add your answer

Q60. Why inner fins are used in intercooler?

Ans.

Inner fins are used in intercooler to increase heat transfer area and improve cooling efficiency.

  • Inner fins increase the surface area of the intercooler, allowing for more heat transfer.

  • This improves the cooling efficiency of the intercooler, allowing for better performance of the engine.

  • Inner fins can be designed in various shapes and sizes to optimize the cooling performance.

  • Examples of intercoolers with inner fins include air-to-air intercoolers and liquid-to-air intercool...read more

Add your answer

Q61. How many system you can connect in the BACnet MSTP protocal network

Ans.

The number of systems that can be connected in a BACnet MSTP protocol network depends on factors like network speed, device types, and network topology.

  • The maximum number of devices that can be connected in a BACnet MSTP network is typically limited to 127 devices.

  • The actual number of systems that can be connected may vary based on the network speed and the types of devices being used.

  • Factors like network topology, cable length, and device addressing also play a role in deter...read more

Add your answer

Q62. What type of ERP do you have worked previously?

Ans.

I have worked with SAP ERP in my previous role as Assistant Manager.

  • Implemented SAP ERP system to streamline business processes

  • Trained team members on how to use SAP ERP for inventory management

  • Generated reports and analyzed data using SAP ERP

  • Collaborated with IT department to customize SAP ERP to meet specific business needs

Add your answer

Q63. Difference between Cost Center and Profit Center, Accounting entries for realised and unrealised forex gain, GR/IR entries

Ans.

Explanation of Cost Center, Profit Center, Accounting entries for forex gain and GR/IR entries.

  • Cost center is a department that incurs costs but does not generate revenue, while profit center generates revenue and incurs costs.

  • Realised forex gain is recorded in the income statement, while unrealised forex gain is recorded in the balance sheet.

  • GR/IR entries are used to record goods receipts and invoice receipts in the system.

  • Cost centers are used for internal reporting purpose...read more

Add your answer

Q64. Describe IO summary, Use of Water meter and flow meter, Sequence of operation for CPM and AHU, Usage of HVAC equipments, Awareness of standards used in BMS

Ans.

The question covers various aspects of HVAC systems and BMS standards.

  • IO summary refers to the input/output points of a system.

  • Water meter and flow meter are used to measure the flow rate and volume of water in a system.

  • Sequence of operation for CPM and AHU refers to the order in which the equipment operates.

  • HVAC equipment includes chillers, boilers, air handlers, etc.

  • BMS standards include protocols like BACnet, Modbus, LonWorks, etc.

Add your answer

Q65. How would you rate yourself in AutoCAD?

Ans.

I would rate myself as highly proficient in AutoCAD.

  • I have extensive experience using AutoCAD in various design projects.

  • I am skilled in creating detailed 2D and 3D models using AutoCAD.

  • I am familiar with advanced features and tools in AutoCAD, such as parametric modeling and rendering.

  • I have successfully completed complex design projects using AutoCAD, meeting all requirements and deadlines.

  • I continuously update my knowledge and skills in AutoCAD through self-learning and pr...read more

View 1 answer

Q66. Do you know python programming language?

Ans.

Yes, I know Python programming language.

  • I have experience in writing Python scripts for automation and data analysis.

  • I am familiar with popular Python libraries such as NumPy, Pandas, and Matplotlib.

  • I have also worked on Python web frameworks like Django and Flask.

  • I am comfortable with object-oriented programming concepts in Python.

Add your answer

Q67. 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 are used in code, while finalize is a method that can be ov...read more

Add your answer

Q68. Journal entries for accumulated depreciation

Ans.

Journal entries for accumulated depreciation

  • Accumulated depreciation is a contra asset account that is credited when depreciation is recorded

  • To record depreciation, debit the depreciation expense account and credit the accumulated depreciation account

  • Example: Depreciation expense of $1,000 is recorded by debiting depreciation expense account and crediting accumulated depreciation account

Add your answer

Q69. which CAD softwares do you have hands on experience?

Ans.

I have hands-on experience with several CAD softwares.

  • AutoCAD

  • SolidWorks

  • CATIA

  • Pro/ENGINEER

  • NX

  • Inventor

Add your answer

Q70. What are different between Revenue and Revenue recognition?

Ans.

Revenue is the total income earned by a company, while revenue recognition is the process of recording revenue in the financial statements.

  • Revenue is the total amount of money a company earns from its operations, while revenue recognition is the process of recognizing that revenue in the financial statements.

  • Revenue is recognized when it is earned, while revenue recognition is the process of determining when revenue is earned and should be recognized.

  • Revenue can be recognized...read more

Add your answer

Q71. what is 2+2-4*6 in numerical format

Ans.

The answer is -22

  • Perform multiplication first

  • Then perform addition and subtraction from left to right

Add your answer

Q72. testing or measurement for equipment & making in progress

Ans.

Testing and measurement are crucial for ensuring equipment functionality and progress monitoring.

  • Regular testing and calibration of equipment can prevent breakdowns and ensure accurate measurements.

  • Measurement tools such as oscilloscopes, multimeters, and spectrum analyzers are commonly used in engineering.

  • In-progress testing can help identify issues early on and prevent costly delays in project completion.

  • Documentation of testing and measurement results is important for qual...read more

Add your answer

Q73. Working of a chilled water system?

Ans.

A chilled water system is a cooling system that uses water as a refrigerant to cool air or equipment.

  • Chilled water is circulated through pipes to cool air in air handling units or to cool equipment such as data centers.

  • The chilled water is cooled by a chiller, which is a machine that removes heat from the water.

  • The chiller can be air-cooled or water-cooled.

  • The chilled water system also includes pumps, valves, and controls to regulate the flow and temperature of the water.

  • Chil...read more

Add your answer

Q74. What is TAS, OIC, TFMS, Radar, DCV

Ans.

TAS is True Airspeed, OIC is Operational Information Center, TFMS is Traffic Flow Management System, Radar is a detection system, DCV is a Digital Control Valve.

  • TAS is the speed of an aircraft relative to the air through which it is flying.

  • OIC is a facility that provides real-time situational awareness and decision support to air traffic managers.

  • TFMS is a system that manages the flow of air traffic in the National Airspace System.

  • Radar is a detection system that uses radio w...read more

Add your answer

Q75. What are the bs recon policy

Ans.

The bs recon policy is not clear. Please provide more context.

    Add your answer

    Q76. Is Stock in transit record in BS?

    Ans.

    Yes, stock in transit is recorded in the balance sheet.

    • Stock in transit is considered as part of inventory and is recorded in the balance sheet under current assets.

    • It represents goods that have been shipped but have not yet reached their final destination.

    • The value of stock in transit is included in the total inventory value on the balance sheet.

    Add your answer

    Q77. What are the different types of sensors?

    Add your answer

    Q78. What is bad debt provision

    Ans.

    Bad debt provision is an accounting entry made to account for the possibility of non-payment by customers.

    • It is an estimate of the amount of money that a company may not be able to collect from its customers.

    • It is recorded as an expense on the company's income statement.

    • It is a precautionary measure taken by companies to avoid losses due to non-payment.

    • It is based on historical data, creditworthiness of customers, and economic conditions.

    • Example: A company sells goods worth $...read more

    Add your answer

    Q79. What is surge in centrifugal chiller.

    Ans.

    Surge in centrifugal chiller is a condition where the flow of refrigerant is disrupted, causing a drop in pressure and flow rate.

    • Surge can occur when the chiller is operating at low load or when there is a sudden change in load.

    • It can cause damage to the compressor and other components of the chiller.

    • Surge can be prevented by using surge control devices such as inlet guide vanes, variable speed drives, and surge tanks.

    • Regular maintenance and monitoring of the chiller can also...read more

    Add your answer

    Q80. What are different types of BMS equipment?

    Add your answer

    Q81. What is smoke and sanity testing?

    Ans.

    Smoke testing is a quick test to check if the basic functionalities of the software are working, while sanity testing is a subset of regression testing to ensure that specific functionalities are working after changes.

    • Smoke testing is performed to ensure that the critical functionalities of the software are working fine before proceeding with detailed testing.

    • Sanity testing is a focused testing to verify specific areas of the software after changes have been made.

    • Smoke testin...read more

    Add your answer

    Q82. difference between radiator and intercooler?

    Ans.

    Radiator cools engine coolant while intercooler cools compressed air from turbocharger or supercharger.

    • Radiator is used in internal combustion engines to cool the engine coolant

    • Intercooler is used in turbocharged or supercharged engines to cool the compressed air

    • Radiator is located in front of the engine while intercooler is located between the turbocharger/supercharger and the engine

    • Radiator reduces the temperature of the engine coolant while intercooler increases the densit...read more

    Add your answer

    Q83. cost and estimation how to calculate

    Ans.

    Cost and estimation are calculated by analyzing project requirements, materials, labor, and overhead costs.

    • Determine project requirements and scope

    • Identify necessary materials and their costs

    • Estimate labor costs based on project timeline and required skillset

    • Calculate overhead costs such as rent, utilities, and insurance

    • Consider any potential risks or unforeseen expenses

    • Use software tools such as Excel or specialized cost estimation software

    • Regularly review and update cost es...read more

    Add your answer

    Q84. Tell me how you used Apache Spark in your internship

    Ans.

    I used Apache Spark to process large datasets and perform complex data transformations during my internship.

    • Implemented Spark jobs to analyze customer behavior data and generate insights for marketing campaigns

    • Utilized Spark SQL for querying and aggregating data from multiple sources

    • Optimized Spark jobs by tuning configurations and partitioning data for better performance

    Add your answer

    Q85. Write a code to find smaller prime number than input

    Ans.

    Code to find smaller prime number than input

    • Start from input-1 and check if it's prime

    • If yes, return it

    • If not, continue checking smaller numbers until a prime is found

    • If no prime is found, return -1

    Add your answer

    Q86. How to deal with suppliers in emergency situations

    Ans.

    In emergency situations, communication with suppliers is key to quickly address issues and find solutions.

    • Establish clear communication channels with suppliers to quickly relay information and discuss solutions

    • Prioritize critical needs and work closely with suppliers to expedite delivery or find alternative sources

    • Maintain strong relationships with key suppliers to ensure they are prepared to support in emergency situations

    • Develop contingency plans with suppliers for various ...read more

    Add your answer

    Q87. What is Security and access control system

    Add your answer

    Q88. What are the types of meters integrated in BMS

    Add your answer

    Q89. will you explain refrigeration cycle?

    Ans.

    Refrigeration cycle is a process of removing heat from a low-temperature reservoir and transferring it to a high-temperature reservoir.

    • The cycle consists of four main components: compressor, condenser, expansion valve, and evaporator.

    • The refrigerant is compressed by the compressor and then condensed in the condenser, releasing heat.

    • The high-pressure liquid refrigerant then passes through the expansion valve, where it expands and evaporates, absorbing heat.

    • The low-pressure ref...read more

    Add your answer

    Q90. What is the proseger to start the unit

    Ans.

    To start the unit, the process involves checking the power supply, setting the thermostat, and turning on the unit.

    • Check the power supply and ensure it is connected and functioning properly.

    • Set the thermostat to the desired temperature.

    • Turn on the unit and wait for it to start up.

    • Monitor the unit to ensure it is running smoothly and efficiently.

    Add your answer

    Q91. Explain BMS Devices list Dps dpt tempsensors fire dampers and other devices

    Ans.

    BMS Devices list includes DPS, DPT, temperature sensors, fire dampers and other devices used in Building Management Systems.

    • BMS Devices list is a comprehensive list of devices used in Building Management Systems.

    • DPS (Differential Pressure Sensors) are used to measure the difference in pressure between two points.

    • DPT (Differential Pressure Transmitters) are used to measure the pressure difference and transmit the data to the control system.

    • Temperature sensors are used to measu...read more

    Add your answer

    Q92. What types are data sources used?

    Add your answer

    Q93. What do you know about PID Loops.

    Ans.

    PID loops are a type of control loop feedback mechanism used in systems to maintain a desired setpoint by adjusting the process inputs.

    • PID stands for Proportional-Integral-Derivative, which are the three control terms used in the loop.

    • Proportional term responds to the current error value.

    • Integral term deals with the accumulation of past errors.

    • Derivative term predicts future errors based on the rate of change.

    • PID loops are commonly used in industrial automation, robotics, and...read more

    Add your answer

    Q94. what is bms and its architechture?

    Ans.

    BMS stands for Building Management System. It is a computer-based control system that manages and monitors a building's mechanical and electrical equipment.

    • BMS controls and monitors HVAC systems, lighting, security, fire alarms, and other building systems.

    • It typically consists of sensors, controllers, communication networks, and user interfaces.

    • Examples of BMS vendors include Siemens, Honeywell, and Johnson Controls.

    Add your answer

    Q95. What types of reports are developed.

    Add your answer

    Q96. what is superheat and much required

    Ans.

    Superheat is the temperature of a vapor above its saturation temperature in a refrigeration system.

    • Superheat is the difference between the actual temperature of the refrigerant vapor and its saturation temperature at a given pressure.

    • It is important in refrigeration systems to prevent liquid refrigerant from entering the compressor, which can cause damage.

    • Superheat is typically measured in degrees Fahrenheit or Celsius.

    • Proper superheat levels ensure efficient operation and pr...read more

    Add your answer

    Q97. Wha do you know about Intercompany?

    Ans.

    Intercompany refers to transactions that occur between two or more entities within the same company or corporate group.

    • Intercompany transactions are common in multinational corporations to transfer goods, services, or funds between subsidiaries.

    • These transactions must be recorded accurately to ensure proper financial reporting and compliance with tax regulations.

    • Intercompany eliminations are necessary to avoid double counting of revenues and expenses in consolidated financial...read more

    Add your answer

    Q98. Explain the Collection cycle?

    Ans.

    The collection cycle refers to the process of collecting outstanding debts from customers.

    • The cycle begins with sending invoices to customers for payment.

    • If payment is not received by the due date, a reminder is sent to the customer.

    • If payment is still not received, a collection call is made to the customer.

    • If the debt remains unpaid, the account may be sent to a collection agency.

    • The cycle ends when the debt is paid in full or written off as uncollectible.

    Add your answer

    Q99. What is your Product development approach

    Ans.

    My product development approach involves a customer-centric mindset, iterative prototyping, cross-functional collaboration, and continuous improvement.

    • Customer-centric mindset: Prioritizing customer needs and feedback throughout the development process.

    • Iterative prototyping: Building and testing prototypes in multiple iterations to gather feedback and make improvements.

    • Cross-functional collaboration: Working closely with different teams such as design, engineering, and market...read more

    Add your answer

    Q100. What process you follow for part creation?

    Add your answer
    1
    2
    Contribute & help others!
    Write a review
    Share interview
    Contribute salary
    Add office photos

    Interview Process at null

    based on 85 interviews in the last 1 year
    Interview experience
    3.9
    Good
    View more
    Interview Tips & Stories
    Ace your next interview with expert advice and inspiring stories

    Top Interview Questions from Similar Companies

    3.7
     • 329 Interview Questions
    4.2
     • 190 Interview Questions
    3.9
     • 169 Interview Questions
    3.4
     • 159 Interview Questions
    4.2
     • 142 Interview Questions
    4.2
     • 139 Interview Questions
    View all
    Top Johnson Controls Interview Questions And Answers
    Share an Interview
    Stay ahead in your career. Get AmbitionBox app
    qr-code
    Helping over 1 Crore job seekers every month in choosing their right fit company
    70 Lakh+

    Reviews

    5 Lakh+

    Interviews

    4 Crore+

    Salaries

    1 Cr+

    Users/Month

    Contribute to help millions
    Get AmbitionBox app

    Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

    Follow us
    • Youtube
    • Instagram
    • LinkedIn
    • Facebook
    • Twitter