Filter interviews by
I applied via Approached by Company and was interviewed before Jan 2024. There were 3 interview rounds.
50 marks objective fully electrical domain
Relays are used for various functions such as protection, control, and monitoring in electrical systems.
Types of relays include protective relays, control relays, and monitoring relays
CT (Current Transformer) and PT (Potential Transformer) are used for measuring current and voltage in electrical systems
Types of breakers include circuit breakers, fuse breakers, and earth leakage circuit breakers
Identifying symbols from electrical schematics is crucial for an Electrical Design Engineer.
Study the legend/key provided with the schematic to understand the symbols used
Look for common symbols such as resistors, capacitors, diodes, transistors, and connectors
Pay attention to the shape, size, and orientation of the symbols to differentiate between components
Use reference materials or software tools to cross-check and
I applied via Approached by Company and was interviewed in Nov 2023. There were 3 interview rounds.
Ckt theory machine ps measurment
Relays are used to control circuits by opening or closing contacts based on electrical signals, while circuit breakers are designed to protect circuits from overloads and short circuits by interrupting the flow of current.
Relays are used for switching purposes, while circuit breakers are used for protection purposes.
Relays operate based on electrical signals, while circuit breakers respond to current flow.
Relays have c...
Microgrid is a localized group of electricity sources and loads that normally operates connected to and synchronous with the traditional centralized grid.
Microgrid is a small-scale power grid that can operate independently or in conjunction with the main power grid.
It can include distributed energy resources like solar panels, wind turbines, and batteries.
Microgrids are often used to increase energy reliability, reduce...
Top trending discussions
I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.
posted on 10 Nov 2015
I appeared for an interview before Oct 2020.
Round duration - 40 minutes
Round difficulty - Medium
Asked about time complexity of algorithm, puzzles, DBMS, cutting edge technologies etc. What are indexes?
Given an array of integers ARR
of size N, consisting of 0s and 1s, you need to select a sub-array and flip its bits. Your task is to return the maximum count of 1s that can b...
Given an array of 0s and 1s, find the maximum count of 1s by flipping a sub-array at most once.
Iterate through the array and keep track of the maximum count of 1s obtained by flipping a sub-array.
Consider flipping a sub-array from index i to j and calculate the count of 1s in the resulting array.
Return the maximum count of 1s obtained by flipping a sub-array at most once.
Round duration - 20 minutes
Round difficulty - Medium
Asked 1 standard algorithm
You are provided with a 2-dimensional matrix having N
rows and M
columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...
Count the number of islands in a 2D matrix of 1s and 0s.
Iterate through the matrix and perform depth-first search (DFS) to find connected 1s.
Mark visited cells to avoid redundant traversal.
Increment island count whenever a new island is encountered.
Tip 1 : prepare for competitive programming
Tip 2 : know about standard algorithm
Tip 3 : must be good with dbms
Tip 1 : must have projects, which you can explain to them
Tip 2 : have things on resume, that you are totally certain about.
I appeared for an interview in Jul 2024.
Leet code medium level question
Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.
Hashmap uses a hashing function to map keys to indices in an array.
It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.
Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");
Joins are used to combine data from two or more tables based on a related column.
Types of joins include inner join, left join, right join, and full outer join.
Inner join returns only the matching rows from both tables.
Left join returns all rows from the left table and matching rows from the right table.
Right join returns all rows from the right table and matching rows from the left table.
Full outer join returns all row...
I applied via Campus Placement and was interviewed in Dec 2021. There was 1 interview round.
I am a software engineer with expertise in developing and maintaining software applications.
Proficient in programming languages such as Java, C++, and Python
Experienced in developing web applications using frameworks like Spring and Django
Skilled in database management and SQL queries
Familiar with software development methodologies like Agile and Scrum
Strong problem-solving and analytical skills
Excellent communication
Output details of recent 10 graduates from a table storing student details.
Sort the table by graduation date in descending order.
Select the top 10 rows from the sorted table.
Output the selected rows.
Optimized approach to find third largest element from array using half traversal.
Sort the array in descending order and return the element at index 2.
Use a max heap to keep track of the top 3 elements while traversing the array.
Use two variables to keep track of the second and third largest elements while traversing the array.
Divide the array into two halves and find the maximum and second maximum in each half, then co
Answering how to print first character of words in a string using one stack and an array.
For using one stack, push each character onto the stack and pop when a space is encountered. Print the popped character.
For using an array, split the string into words and print the first character of each word.
In both cases, handle edge cases like empty string and string with only one word.
Hash table. No, it is not possible to create a data structure with all operations in O(1) time.
Hash table uses a hash function to map keys to indices in an array.
Insertion and deletion can be done in O(1) time on average.
Search retrieval can also be done in O(1) time on average.
However, worst-case scenarios can result in O(n) time complexity.
It is not possible to create a data structure with all operations in O(1) time
ACID properties ensure database transactions are reliable. Two transactions can occur simultaneously using locking and isolation.
ACID stands for Atomicity, Consistency, Isolation, and Durability.
Atomicity ensures that a transaction is treated as a single unit of work, either all or none of it is executed.
Consistency ensures that a transaction brings the database from one valid state to another.
Isolation ensures that co...
Indexes are used to improve query performance. Multiple clustered and non-clustered indexes can be created on a table.
Indexes are used to quickly locate data without scanning the entire table.
Clustered index determines the physical order of data in a table.
Non-clustered index is a separate structure that contains a copy of the indexed columns and a pointer to the actual data.
A table can have only one clustered index, b...
Given an array and a number, find if the number can be generated using sum of array members and output those numbers.
Iterate through the array and check if the number can be generated using the sum of array members
Use a hash table to store the difference between the number and each array element
If the difference is found in the hash table, output the corresponding array elements
If no such combination is found, output '
Time complexity of data structure operations
Arrays: O(1) for access, O(n) for search/insert/delete
Linked Lists: O(n) for access/search, O(1) for insert/delete
Stacks/Queues: O(1) for access/insert/delete
Hash Tables: O(1) for access/insert/delete (average case)
Trees: O(log n) for access/search/insert/delete (balanced)
Heaps: O(log n) for access/insert/delete
Graphs: Varies depending on algorithm used
Span is an inline element used for styling small portions of text, while div is a block-level element used for grouping and styling larger sections of content.
Span is an inline element, div is a block-level element
Span is used for styling small portions of text, div is used for grouping larger sections of content
Span does not create a new line, div creates a new block-level element
I applied via Approached by Company and was interviewed in Dec 2023. There were 3 interview rounds.
All three questions are leetcode medium level.
10th level aptitude problem.
based on 3 interviews
Interview experience
based on 3 reviews
Rating in categories
Software Engineer
163
salaries
| ₹2 L/yr - ₹8.5 L/yr |
Senior Software Engineer
100
salaries
| ₹3 L/yr - ₹10 L/yr |
Design Engineer
97
salaries
| ₹1.5 L/yr - ₹6.5 L/yr |
Project Engineer
68
salaries
| ₹2.2 L/yr - ₹4.2 L/yr |
Softwaretest Engineer
51
salaries
| ₹2.9 L/yr - ₹7.5 L/yr |
Tekwissen
Softenger
XcelServ Solutions
Damco Solutions