Filter interviews by
I applied via Approached by Company and was interviewed in Dec 2022. There were 4 interview rounds.
I applied via Company Website and was interviewed before Nov 2020. There were 3 interview rounds.
posted on 15 Dec 2020
I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.
I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.
The gearbox oil grade is typically specified by the manufacturer based on the requirements of the gearbox.
Gearbox oil grade is determined by the viscosity and additives needed for proper lubrication.
Common gearbox oil grades include SAE 80, SAE 90, and SAE 140.
Consult the manufacturer's specifications or maintenance manual for the recommended gearbox oil grade.
Pitch convertor system,
posted on 21 Jul 2024
posted on 16 Jan 2025
I applied via Campus Placement and was interviewed in Dec 2024. There were 2 interview rounds.
Easy test with simple questions
Solar panels convert sunlight into electricity through the photovoltaic effect.
Solar panels are made up of photovoltaic cells that contain semiconductors like silicon.
When sunlight hits the solar panel, the photons in the light are absorbed by the semiconductors.
This absorption creates an electric current as the electrons in the semiconductors are excited and flow through the material.
The flow of electrons generates el...
The company is a leading provider of electrical engineering solutions for various industries.
Specializes in designing and implementing electrical systems for commercial and industrial buildings
Offers services such as power distribution, lighting design, and energy efficiency consulting
Works with clients in sectors like manufacturing, healthcare, and telecommunications
Has a team of experienced electrical engineers and t...
posted on 14 Oct 2021
posted on 5 Oct 2023
posted on 10 Feb 2024
I applied via Campus Placement
The basic law governing transformers is the law of electromagnetic induction.
The law states that when the magnetic field around a conductor changes, an electromotive force (EMF) is induced in the conductor.
This EMF can cause a current to flow if the conductor forms a closed loop.
In a transformer, this principle is used to transfer electrical energy from one circuit to another through electromagnetic induction.
The prima...
Various losses in a transformer include copper losses, iron losses, and stray losses.
Copper losses occur due to resistance in the transformer windings.
Iron losses, also known as core losses, occur due to hysteresis and eddy currents in the transformer core.
Stray losses occur due to leakage flux and stray capacitance in the transformer.
Copper losses and iron losses are the major contributors to total losses in a transfo...
AC and DC are two types of electrical current. AC changes direction periodically while DC flows in one direction.
AC stands for Alternating Current and DC stands for Direct Current.
AC changes direction periodically, typically in a sinusoidal waveform.
DC flows in one direction only, maintaining a constant polarity.
AC is used for power transmission over long distances due to its ability to be easily converted to different...
An inverter is a device that converts DC power to AC power.
An inverter is commonly used in electrical systems to convert the direct current (DC) produced by sources such as batteries or solar panels into alternating current (AC) that can be used to power appliances and devices.
The basic working principle of an inverter involves the use of electronic components such as transistors to switch the DC input on and off rapid...
Solar panel installation requires several components including solar panels, inverters, mounting systems, wiring, and electrical protection devices.
Solar panels: These are the main components that convert sunlight into electricity.
Inverters: They convert the direct current (DC) produced by solar panels into alternating current (AC) that can be used in homes or fed into the grid.
Mounting systems: These are used to secur...
There are various types of circuit breakers with different uses and ratings.
Miniature Circuit Breaker (MCB) - used in residential and commercial buildings
Molded Case Circuit Breaker (MCCB) - used in industrial applications
Air Circuit Breaker (ACB) - used for high voltage applications
Ground Fault Circuit Interrupter (GFCI) - used to protect against electrical shocks
Residual Current Circuit Breaker (RCCB) - used to detec...
I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.
Lifecycle methods are methods that are automatically called at certain points in the lifecycle of a component in React.
Lifecycle methods include componentDidMount, componentDidUpdate, componentWillUnmount, etc.
These methods allow developers to perform actions at specific points in a component's lifecycle, such as fetching data after the component has been rendered.
They are used to manage side effects, perform cleanup, ...
React is a popular JavaScript library for building user interfaces.
Component-based architecture for reusability and easy maintenance
Virtual DOM for efficient updates and performance optimization
JSX syntax for writing HTML within JavaScript
One-way data binding for predictable data flow
Support for server-side rendering for improved SEO
Large community and ecosystem with many third-party libraries and tools
Class components are ES6 classes that extend from React.Component and have state and lifecycle methods, while functional components are simple functions that take props as input and return JSX.
Class components are defined using ES6 classes and have a render method.
Functional components are defined as simple functions that take props as input and return JSX.
Class components can have state and lifecycle methods like comp...
Higher order components are functions that take a component and return a new component with additional functionality.
Higher order components enhance the functionality of existing components
They can be used for code reusability and separation of concerns
Examples include withRouter from React Router and connect from React Redux
React hooks are functions that let you use state and other React features without writing a class.
React hooks were introduced in React 16.8.
They allow you to use state and other React features in functional components.
Some commonly used hooks are useState, useEffect, useContext, and useReducer.
Hooks are more flexible and easier to use compared to class components.
ContextAPI is a built-in feature in React for managing global state, while Redux is a separate library for state management in React applications.
ContextAPI is built into React, while Redux is a separate library.
ContextAPI is primarily used for managing global state in a React application.
Redux provides a centralized store for state management and follows a unidirectional data flow.
ContextAPI is simpler to use for smal...
Semantic elements in HTML are tags that clearly define the content they wrap, providing meaning to both browsers and developers.
Semantic elements help improve SEO by providing search engines with better understanding of the content.
Examples of semantic elements include <header>, <footer>, <article>, <section>, <nav>, <aside>, <main>, <figure>, <figcaption>, <deta...
Pseudo elements are used in CSS to style specific parts of an element.
Pseudo elements are denoted by double colons (::) in CSS.
They allow styling of specific parts of an element, like the first letter or line.
Common pseudo elements include ::before, ::after, ::first-line, and ::first-letter.
The box model is a fundamental concept in CSS that defines the layout of elements on a webpage.
The box model consists of content, padding, border, and margin.
Content: the actual content of the element, such as text or images.
Padding: space between the content and the border.
Border: a line that goes around the padding and content.
Margin: space outside the border, separating the element from other elements.
Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase.
Variable and function declarations are hoisted to the top of their scope.
Only declarations are hoisted, not initializations.
Function declarations take precedence over variable declarations.
Example: console.log(myVar); var myVar = 10; // Output: undefined
Example: cons...
Normal functions are defined using the function keyword, while arrow functions are defined using the => syntax.
Normal functions are hoisted, while arrow functions are not hoisted.
Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.
Arrow functions do not have their own 'arguments' object.
Arrow functions are more concise and have implicit return.
Arrow functions cannot be used as co
Splice and slice are methods used in programming to manipulate arrays.
Splice is used to add or remove elements from an array at a specific index.
Slice is used to extract a portion of an array and returns a new array.
Example of splice: array.splice(2, 0, 'new element') - adds 'new element' at index 2.
Example of slice: array.slice(1, 4) - extracts elements from index 1 to 3.
Coding questions on Java script like array methods and objects handling. coding questions on React is like life cycle methods using functional components and state management.
based on 1 interview
Interview experience
based on 2 reviews
Rating in categories
Electrical Project Engineer
11
salaries
| ₹0 L/yr - ₹0 L/yr |
Assistant Manager
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Electrical Engineer
9
salaries
| ₹0 L/yr - ₹0 L/yr |
Project Engineer
7
salaries
| ₹0 L/yr - ₹0 L/yr |
Field Engineer
6
salaries
| ₹0 L/yr - ₹0 L/yr |
UTL Solar
LM Wind Power
Senvion
EVIO