Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by embedUR Systems Team. If you also belong to the team, you can get access from here

embedUR Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

embedUR Systems Interview Questions and Answers for Freshers

Updated 17 Jun 2025
Popular Designations

13 Interview questions

A Software Engineer was asked
Q. What is the difference between malloc and calloc?
Ans. 

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...

View all Software Engineer interview questions
An Electrical Engineer was asked
Q. What is a PNP junction?
Ans. 

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 ...

View all Electrical Engineer interview questions
An Electrical Engineer was asked
Q. What is a resistor?
Ans. 

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...

View all Electrical Engineer interview questions
A Software Engineer was asked
Q. What is Paging in OS?
Ans. 

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.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is the difference between BFS and DFS?
Ans. 

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...

View all Software Engineer interview questions
A Software Developer was asked
Q. How does quick sort work?
Ans. 

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

View all Software Developer interview questions
A Software Developer was asked
Q. What is paging?
Ans. 

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...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What are Min heap and Max heap?
Ans. 

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...

View all Software Developer interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Which traction motor is best?
Ans. 

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...

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Define structure and union in C.
Ans. 

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...

View all Graduate Engineer Trainee (Get) interview questions

embedUR Systems Interview Experiences for Freshers

10 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy and asked on boats and streams, time and work

Round 2 - Group Discussion 

Asked about ece domain

Round 3 - One-on-one 

(1 Question)

  • Q1. Introduce yourself
  • Ans. 

    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

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude with logical and verbal and reasoning.also microprocessor and micro controller.

Round 2 - Group Discussion 

We were divided into 10 and ques were asked from dbms,ds,os,cn

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare the basic core computer science concepts and subject like dbms,ds,os,cn
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Basic aptitude questions with the some basic c questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions from communication engineering, c , linux , microcontroller microprocessor,..

Round 2 - Group Discussion 

GD to test our knowledge and communication

Round 3 - HR 

(2 Questions)

  • Q1. Digital electronics, electrical machines, c programming, microcontroller microprocessor
  • Q2. Difference between malloc and c alloc
Round 4 - Technical 

(1 Question)

  • Q1. Tech 1 vs 3 . Questions from round 3
Round 5 - HR 

(1 Question)

  • Q1. Negotiation, work culture, company expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and be confident that's enough
Deliver the knowledge properly without any low confidence answers

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Apti round took place in online mode but it is not proctored

Round 3 - Group Discussion 

This one is technical GD and shortlisted people will be divided into batches and will asked technical qns for which ppl has to answer

Round 4 - Case Study 

People who got shortlisted will be having another technical GD and the same process will be continued

Round 5 - Technical 

(5 Questions)

  • Q1. 1.What is paging? Ans: it is used by Operating system to page the process
  • Ans. 

    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...

  • Answered by AI
  • Q2. 2.what is the best sorting algorithm? Ans: Quick sort since it will be using the address of the variable,no additional memory is needed
  • Q3. 3.what are all the various searching methods? Ans: BFS,DFS,binary search,linear search
  • Ans. 

    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...

  • Answered by AI
  • Q4. 4.How does quick sort works? Ans: Quick sort works by having a pivot element and sorts by divide and conquer
  • Ans. 

    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

  • Answered by AI
  • Q5. 5.What is Min heap and Max heap Ans: Heap in which the root element or parent node is larger than the child it is called Max heap and vice viresa is called Min heap
  • Ans. 

    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...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If u guys have electrical core and then u guys can try for this company

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

Asking about basic core paper question

Round 3 - Technical 

(2 Questions)

  • Q1. Components working
  • Ans. 

    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...

  • Answered by AI
  • Q2. Concepts explanation

I applied via Approached by Company and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Group Discussion 

Batch Based GD on the core subjects

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is Paging in OS ?
  • Ans. 

    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.

  • Answered by AI
  • Q2. What is the difference between BFS and DFS
  • Ans. 

    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...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Embedded theory questions and go through basic electronics

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Which is best for traction motor
  • Ans. 

    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...

  • Answered by AI
  • Q2. Define structure and union in C
  • Ans. 

    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...

  • Answered by AI
  • Q3. Distribution KW in a substation
  • Ans. 

    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...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The arrogance of the interviewer makes it worse. absolute waste of time. no need to prepare for this interview they ask irrelevant questions any way

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Damn easy they will ask easy question which is easy and u can crack if u are good in basics

Round 3 - Group Discussion 

It's fully technical

Round 4 - One-on-one 

(5 Questions)

  • Q1. Be bold and speak in English properly
  • Q2. Tell me about yourself
  • Ans. 

    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

  • Answered by AI
  • Q3. What is resistor
  • Ans. 

    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 ...

  • Answered by AI
  • Q4. What is pnp junction
  • Ans. 

    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...

  • Answered by AI
  • Q5. What is your knowledge about our company
  • Ans. 

    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...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for embedUR Systems Electrical Engineer interview:
  • Mpmc
  • Digital Electronics
  • Verbal
  • Aptitude
Interview preparation tips for other job seekers - Be good and do ur work efficiently

Interview Questionnaire 

1 Question

  • Q1. All regarding networking and c

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about embedUR Systems?
Ask anonymously on communities.

embedUR Systems Interview FAQs

How many rounds are there in embedUR Systems interview for freshers?
embedUR Systems interview process for freshers usually has 3-4 rounds. The most common rounds in the embedUR Systems interview process for freshers are Group Discussion, Aptitude Test and Resume Shortlist.
How to prepare for embedUR Systems interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at embedUR Systems. The most common topics and skills that interviewers at embedUR Systems expect are Python, Linux, WiFi, Data Structures and Software Engineering.
What are the top questions asked in embedUR Systems interview for freshers?

Some of the top questions asked at the embedUR Systems interview for freshers -

  1. 1.What is paging? Ans: it is used by Operating system to page the proc...read more
  2. 5.What is Min heap and Max heap Ans: Heap in which the root element or parent n...read more
  3. 3.what are all the various searching methods? Ans: BFS,DFS,binary search,linear...read more
How long is the embedUR Systems interview process?

The duration of embedUR Systems interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 6 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 214 Interviews
MathCo Interview Questions
3.0
 • 116 Interviews
Zeta Interview Questions
3.4
 • 74 Interviews
CoinDCX Interview Questions
3.8
 • 31 Interviews
Seclore Interview Questions
4.0
 • 27 Interviews
MoEngage Interview Questions
3.9
 • 27 Interviews
Cloudangles Interview Questions
3.5
 • 24 Interviews
View all

embedUR Systems Reviews and Ratings

based on 49 reviews

3.2/5

Rating in categories

3.7

Skill development

2.7

Work-life balance

3.7

Salary

3.5

Job security

2.7

Company culture

3.4

Promotions

3.0

Work satisfaction

Explore 49 Reviews and Ratings
Quality Assurance Engineer

Chennai

1-3 Yrs

Not Disclosed

Embedded Software Development Engineer

Chennai

0-1 Yrs

Not Disclosed

Cloud Development Engineer

Chennai

0-1 Yrs

Not Disclosed

Explore more jobs
Software Engineer
107 salaries
unlock blur

₹5.1 L/yr - ₹11 L/yr

Senior Software Engineer
103 salaries
unlock blur

₹9 L/yr - ₹14.7 L/yr

Technical Lead
21 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Software Developer
19 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Embedded Software Engineer
7 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Explore more salaries
Compare embedUR Systems with

Fractal Analytics

4.0
Compare

MathCo

3.0
Compare

Watchyourhealth.com

4.7
Compare

Innovatiview India Ltd

3.9
Compare
write
Share an Interview