i
embedUR
Systems
Filter interviews by
malloc allocates memory without initializing, while calloc allocates and initializes memory to zero.
malloc(size_t size): Allocates 'size' bytes of memory. Example: int *arr = (int *)malloc(10 * sizeof(int));
calloc(size_t num, size_t size): Allocates memory for an array of 'num' elements, each 'size' bytes, initialized to zero. Example: int *arr = (int *)calloc(10, sizeof(int));
malloc does not initialize memory, le...
A pnp junction is a type of bipolar junction transistor (BJT) that consists of a p-doped semiconductor sandwiched between two n-doped semiconductors.
The pnp junction is a three-layer device with a p-type layer sandwiched between two n-type layers.
It is commonly used in amplification and switching circuits.
In a pnp transistor, the majority charge carriers are holes, which flow from the emitter to the collector.
The ...
A resistor is an electronic component that resists the flow of electric current.
Resistors are used to control the amount of current flowing in a circuit.
They are typically made of a material that has high resistance to the flow of electricity.
The resistance of a resistor is measured in ohms (Ω).
Resistors come in different shapes and sizes, and are color-coded to indicate their resistance value.
Examples of applicat...
Paging is a memory management technique used by OS to store and retrieve data from secondary storage.
It divides the memory into fixed-size pages and stores data in these pages.
It allows efficient use of memory by swapping out less frequently used pages to disk.
It reduces fragmentation and improves memory utilization.
Examples include Windows Virtual Memory and Linux Swap Space.
BFS and DFS are two popular graph traversal algorithms. BFS explores the graph level by level while DFS explores the graph depth by depth.
BFS uses a queue data structure while DFS uses a stack or recursion.
BFS is guaranteed to find the shortest path between two nodes while DFS may not.
BFS is better suited for finding the shortest path, while DFS is better suited for finding all possible paths or cycles.
BFS has a h...
Quick sort works by selecting a pivot element and sorting the array by divide and conquer.
Select a pivot element from the array
Divide the array into two sub-arrays, one with elements smaller than the pivot and the other with elements greater than the pivot
Recursively apply the above steps to the sub-arrays
Combine the sorted sub-arrays to get the final sorted array
Paging is a memory management technique used by the operating system to store and retrieve data from secondary storage.
Paging divides the memory into fixed-size pages and stores them in secondary storage.
When a process needs a page, the operating system retrieves it from secondary storage and loads it into memory.
Paging allows for efficient use of memory and helps prevent fragmentation.
Examples of operating system...
Max heap has the largest element at the root while Min heap has the smallest element at the root.
Max heap is a complete binary tree where the parent node is greater than or equal to its child nodes.
Min heap is a complete binary tree where the parent node is less than or equal to its child nodes.
Heaps are commonly used in sorting algorithms like Heap Sort and Priority Queues.
Insertion and deletion operations in hea...
The best option for traction motor depends on the specific application and requirements.
AC induction motors are commonly used for electric vehicles due to their high efficiency and reliability.
Permanent magnet synchronous motors are also a popular choice for their high power density and torque.
Brushless DC motors are another option, offering high efficiency and low maintenance.
The choice of motor also depends on f...
Structure and union are two user-defined data types in C used to store multiple data types under a single variable name.
Structure is a collection of variables of different data types under a single name.
Union is similar to structure but all the variables share the same memory location.
Structures are used to represent complex data types like a student record or a book record.
Unions are used to save memory by sharin...
I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.
It was easy and asked on boats and streams, time and work
Asked about ece domain
I am a recent graduate with a degree in Electrical Engineering, eager to apply my knowledge and skills in a professional setting.
Graduated with a Bachelor's degree in Electrical Engineering
Strong understanding of circuit design and analysis
Proficient in using CAD software for designing electrical systems
Completed internships at XYZ Company, gaining hands-on experience in troubleshooting electrical systems
I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.
Basic aptitude with logical and verbal and reasoning.also microprocessor and micro controller.
We were divided into 10 and ques were asked from dbms,ds,os,cn
I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.
Basic aptitude questions with the some basic c questions
I applied via Campus Placement and was interviewed before Mar 2023. There were 5 interview rounds.
Aptitude questions from communication engineering, c , linux , microcontroller microprocessor,..
GD to test our knowledge and communication
I applied via Campus Placement and was interviewed in Aug 2022. There were 5 interview rounds.
Apti round took place in online mode but it is not proctored
This one is technical GD and shortlisted people will be divided into batches and will asked technical qns for which ppl has to answer
People who got shortlisted will be having another technical GD and the same process will be continued
Paging is a memory management technique used by the operating system to store and retrieve data from secondary storage.
Paging divides the memory into fixed-size pages and stores them in secondary storage.
When a process needs a page, the operating system retrieves it from secondary storage and loads it into memory.
Paging allows for efficient use of memory and helps prevent fragmentation.
Examples of operating systems tha...
Various searching methods include BFS, DFS, binary search, and linear search.
BFS (Breadth-First Search) explores all the vertices at the same level before moving to the next level.
DFS (Depth-First Search) explores as far as possible along each branch before backtracking.
Binary search is a divide and conquer algorithm that searches a sorted array by repeatedly dividing the search interval in half.
Linear search checks ea...
Quick sort works by selecting a pivot element and sorting the array by divide and conquer.
Select a pivot element from the array
Divide the array into two sub-arrays, one with elements smaller than the pivot and the other with elements greater than the pivot
Recursively apply the above steps to the sub-arrays
Combine the sorted sub-arrays to get the final sorted array
Max heap has the largest element at the root while Min heap has the smallest element at the root.
Max heap is a complete binary tree where the parent node is greater than or equal to its child nodes.
Min heap is a complete binary tree where the parent node is less than or equal to its child nodes.
Heaps are commonly used in sorting algorithms like Heap Sort and Priority Queues.
Insertion and deletion operations in heaps ta...
I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.
Asking about basic core paper question
Components working refers to the individual parts of a system functioning properly together.
Components working means each part of the system is operational and interacting correctly.
Example: In a software application, components working would include the database, server, and user interface all functioning as intended.
Example: In a car, components working would involve the engine, brakes, and steering system all workin...
I applied via Approached by Company and was interviewed in Sep 2022. There were 3 interview rounds.
Batch Based GD on the core subjects
Paging is a memory management technique used by OS to store and retrieve data from secondary storage.
It divides the memory into fixed-size pages and stores data in these pages.
It allows efficient use of memory by swapping out less frequently used pages to disk.
It reduces fragmentation and improves memory utilization.
Examples include Windows Virtual Memory and Linux Swap Space.
BFS and DFS are two popular graph traversal algorithms. BFS explores the graph level by level while DFS explores the graph depth by depth.
BFS uses a queue data structure while DFS uses a stack or recursion.
BFS is guaranteed to find the shortest path between two nodes while DFS may not.
BFS is better suited for finding the shortest path, while DFS is better suited for finding all possible paths or cycles.
BFS has a higher...
I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.
The best option for traction motor depends on the specific application and requirements.
AC induction motors are commonly used for electric vehicles due to their high efficiency and reliability.
Permanent magnet synchronous motors are also a popular choice for their high power density and torque.
Brushless DC motors are another option, offering high efficiency and low maintenance.
The choice of motor also depends on factor...
Structure and union are two user-defined data types in C used to store multiple data types under a single variable name.
Structure is a collection of variables of different data types under a single name.
Union is similar to structure but all the variables share the same memory location.
Structures are used to represent complex data types like a student record or a book record.
Unions are used to save memory by sharing the...
Distribution of KW in a substation
KW distribution is the process of distributing power to various loads in a substation
It involves the use of transformers, switchgear, and other equipment to regulate and control the flow of power
Distribution of KW is critical to ensure that power is delivered efficiently and reliably to customers
Factors such as load demand, voltage levels, and system stability must be considered when d...
I applied via LinkedIn and was interviewed before Apr 2022. There were 4 interview rounds.
Damn easy they will ask easy question which is easy and u can crack if u are good in basics
It's fully technical
I am an experienced Electrical Engineer with a strong background in designing and implementing electrical systems.
Bachelor's degree in Electrical Engineering from XYZ University
5 years of experience working in the power distribution industry
Proficient in CAD software for designing electrical circuits
Led a team of engineers to successfully complete a major power plant project
Strong problem-solving and analytical skills
A resistor is an electronic component that resists the flow of electric current.
Resistors are used to control the amount of current flowing in a circuit.
They are typically made of a material that has high resistance to the flow of electricity.
The resistance of a resistor is measured in ohms (Ω).
Resistors come in different shapes and sizes, and are color-coded to indicate their resistance value.
Examples of applications ...
A pnp junction is a type of bipolar junction transistor (BJT) that consists of a p-doped semiconductor sandwiched between two n-doped semiconductors.
The pnp junction is a three-layer device with a p-type layer sandwiched between two n-type layers.
It is commonly used in amplification and switching circuits.
In a pnp transistor, the majority charge carriers are holes, which flow from the emitter to the collector.
The pnp j...
Our company is a leading provider of electrical engineering solutions, specializing in innovative designs and cutting-edge technology.
Our company has been in operation for over 20 years
We have a team of highly skilled electrical engineers
We have successfully completed projects in various industries such as renewable energy, telecommunications, and manufacturing
Our company values innovation, quality, and customer satisf...
Top trending discussions
Some of the top questions asked at the embedUR Systems interview for freshers -
The duration of embedUR Systems interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 6 interview experiences
Difficulty level
Duration
based on 49 reviews
Rating in categories
Software Engineer
107
salaries
| ₹5.1 L/yr - ₹11 L/yr |
Senior Software Engineer
103
salaries
| ₹9 L/yr - ₹14.7 L/yr |
Technical Lead
21
salaries
| ₹12 L/yr - ₹25 L/yr |
Software Developer
19
salaries
| ₹4.4 L/yr - ₹10 L/yr |
Embedded Software Engineer
7
salaries
| ₹5 L/yr - ₹11 L/yr |
Fractal Analytics
MathCo
Watchyourhealth.com
Innovatiview India Ltd