Filter interviews by
MCB stands for Miniature Circuit Breaker. It is an electrical switch that automatically shuts off the electrical circuit during an overload or short circuit.
MCB is a type of circuit breaker that is commonly used in residential and commercial buildings.
It is designed to protect electrical circuits from damage caused by overloading or short circuits.
MCBs are available in different current ratings and can be easily r...
A DC motor is an electrical machine that converts direct current electrical energy into mechanical energy.
DC motors are commonly used in various applications such as electric vehicles, robotics, and industrial machinery.
They consist of a stator, rotor, commutator, and brushes.
The direction of rotation can be changed by reversing the polarity of the input voltage.
DC motors are classified into two types: brushed and...
DC current is the flow of electric charge in a single direction.
DC stands for Direct Current.
It is produced by sources such as batteries, fuel cells, and solar cells.
DC current is used in electronic devices such as computers, televisions, and radios.
It is also used in electric vehicles and trains.
DC current is measured in amperes (A).
RCCB stands for Residual Current Circuit Breaker. It is a safety device that quickly disconnects the power supply when it detects a leakage current.
RCCB is also known as a residual current device (RCD).
It is used to protect against electric shock and fire caused by faulty wiring or appliances.
RCCB works by comparing the current flowing in the live and neutral wires. If there is a difference, it means that some cur...
AC motor power refers to the amount of electrical energy that can be converted into mechanical energy by an AC motor.
AC motor power is measured in watts (W)
It is calculated by multiplying the voltage, current, and power factor of the motor
The power factor is a measure of how efficiently the motor converts electrical energy into mechanical energy
AC motor power can be increased by increasing the voltage or current s...
AC current is a type of electrical current that periodically reverses direction.
AC stands for Alternating Current
It is commonly used in household appliances and power distribution systems
The voltage and frequency of AC current can vary depending on the application
Examples of AC current include the power from a wall outlet and the electricity generated by a wind turbine
I applied via Company Website and was interviewed in Nov 2021. There were 3 interview rounds.
AC current is a type of electrical current that periodically reverses direction.
AC stands for Alternating Current
It is commonly used in household appliances and power distribution systems
The voltage and frequency of AC current can vary depending on the application
Examples of AC current include the power from a wall outlet and the electricity generated by a wind turbine
DC current is the flow of electric charge in a single direction.
DC stands for Direct Current.
It is produced by sources such as batteries, fuel cells, and solar cells.
DC current is used in electronic devices such as computers, televisions, and radios.
It is also used in electric vehicles and trains.
DC current is measured in amperes (A).
A DC motor is an electrical machine that converts direct current electrical energy into mechanical energy.
DC motors are commonly used in various applications such as electric vehicles, robotics, and industrial machinery.
They consist of a stator, rotor, commutator, and brushes.
The direction of rotation can be changed by reversing the polarity of the input voltage.
DC motors are classified into two types: brushed and brus...
AC motor power refers to the amount of electrical energy that can be converted into mechanical energy by an AC motor.
AC motor power is measured in watts (W)
It is calculated by multiplying the voltage, current, and power factor of the motor
The power factor is a measure of how efficiently the motor converts electrical energy into mechanical energy
AC motor power can be increased by increasing the voltage or current suppli...
RCCB stands for Residual Current Circuit Breaker. It is a safety device that quickly disconnects the power supply when it detects a leakage current.
RCCB is also known as a residual current device (RCD).
It is used to protect against electric shock and fire caused by faulty wiring or appliances.
RCCB works by comparing the current flowing in the live and neutral wires. If there is a difference, it means that some current ...
MCB stands for Miniature Circuit Breaker. It is an electrical switch that automatically shuts off the electrical circuit during an overload or short circuit.
MCB is a type of circuit breaker that is commonly used in residential and commercial buildings.
It is designed to protect electrical circuits from damage caused by overloading or short circuits.
MCBs are available in different current ratings and can be easily reset ...
Top trending discussions
I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.
Python interpreter is a program that executes Python code.
It reads Python code and converts it into machine-readable code
It executes the code line by line
It also provides a command-line interface for interactive programming
Examples: CPython, Jython, IronPython
Python was developed by Guido van Rossum in the late 1980s.
Guido van Rossum started working on Python in December 1989.
Python's design philosophy emphasizes code readability and ease of use.
Python is an interpreted, high-level, general-purpose programming language.
Python's popularity has been steadily increasing over the years.
Python is open-source and has a large community of developers contributing to its development...
PEP8 is a style guide for Python code.
PEP8 provides guidelines for formatting, naming, and organizing Python code.
It covers topics such as indentation, line length, variable naming, and function and class definitions.
Adhering to PEP8 can improve code readability and maintainability.
Tools such as Flake8 and PyLint can be used to check code against PEP8 standards.
A class is a blueprint for creating objects that have similar properties and behaviors.
A class is a user-defined data type that encapsulates data and functions.
It provides a way to organize and structure code.
Objects are instances of a class.
Classes can inherit properties and behaviors from other classes.
Example: A class 'Car' can have properties like 'color', 'model', and behaviors like 'start', 'stop'.
An object is an instance of a class that encapsulates data and behavior.
Objects are created from classes
They have attributes (data) and methods (behavior)
Objects can interact with each other through method calls
Examples include a car object with attributes like make, model, and color, and methods like start and stop
Another example is a person object with attributes like name and age, and methods like walk and talk
Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.
Inheritance allows code reuse and promotes code organization.
The existing class is called the parent or superclass, and the new class is called the child or subclass.
The child class inherits all the properties and methods of the parent class and can also add its own unique properties and ...
Multiple inheritance is the ability of a class to inherit properties and behavior from multiple parent classes.
It allows a class to inherit from more than one parent class.
It can lead to the diamond problem where a class inherits from two classes that have a common base class.
Languages like C++ support multiple inheritance while others like Java do not.
Example: A class can inherit properties from both a 'Vehicle' class...
Data abstraction is the process of hiding implementation details and showing only the necessary information to the user.
Abstraction is achieved through abstract classes and interfaces
It helps in reducing complexity and increasing efficiency
Example: A car dashboard shows only necessary information like speed, fuel level, etc. and hides the internal workings of the car
Abstraction is one of the four fundamental concepts o...
I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.
I applied via Company Website and was interviewed in Jul 2021. There were 3 interview rounds.
Some basic questions
About Indian economic
I applied via Company Website and was interviewed in Aug 2021. There were 4 interview rounds.
I bring a unique blend of technical skills, problem-solving abilities, and a passion for collaboration that drives project success.
Strong Technical Skills: Proficient in Java, Spring Boot, and React, demonstrated by developing a full-stack application that improved user engagement by 30%.
Problem-Solving Mindset: Successfully resolved a critical performance issue in a legacy system, reducing load time by 50% through cod...
Reversing a string involves rearranging its characters in the opposite order, which can be done using various methods.
Use built-in functions: In Python, you can reverse a string with slicing: `reversed_string = original_string[::-1]`.
Iterative approach: Loop through the string from the end to the beginning and build a new string.
Using recursion: Define a function that calls itself with a smaller substring until it reac...
I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.
I have over 5 years of experience in business execution, focusing on data analysis, process improvement, and stakeholder engagement.
Led a project to streamline reporting processes, reducing time spent on data collection by 30%.
Collaborated with cross-functional teams to implement a new CRM system, enhancing customer tracking and engagement.
Conducted market analysis that informed strategic decisions, resulting in a 15% ...
I applied via Freshers jobs and was interviewed in Feb 2021. There were 4 interview rounds.
HCL Technologies is a global IT services company based in India, specializing in software development and digital transformation.
Founded in 1976, HCL is one of India's leading IT services companies.
Offers a wide range of services including IT consulting, enterprise transformation, and engineering services.
Has a strong presence in various industries such as healthcare, finance, and manufacturing.
Employs over 200,000 pro...
based on 4 reviews
Rating in categories
Planning Incharge
4
salaries
| ₹4 L/yr - ₹6.8 L/yr |
Project Manager
3
salaries
| ₹9.5 L/yr - ₹11.5 L/yr |
TCS
Accenture
Wipro
Cognizant