Upload Button Icon Add office photos
Premium Employer

i

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

Agiliad Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Agiliad Technologies Embedded Developer Interview Questions and Answers

Updated 28 May 2024

Agiliad Technologies Embedded Developer Interview Experiences

1 interview found

Embedded Developer Interview Questions & Answers

user image Chetana patil

posted on 28 May 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Communication protocol
Round 2 - Technical 

(1 Question)

  • Q1. Arbistration in CAN
  • Ans. 

    Arbitration in CAN refers to the process of determining which message gets transmitted on the bus when multiple nodes attempt to send messages simultaneously.

    • Arbitration is based on the priority of the message identifier, with lower values having higher priority.

    • CAN uses a bitwise arbitration process where nodes compare their message identifiers bit by bit.

    • The node with the lowest identifier value wins arbitration and ...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
4d (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 Agiliad Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts and program on linked list reversal and c pointer concepts
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts,C basis, IPC and signals
Round 3 - Technical 

(1 Question)

  • Q1. OOPs concepts, c basics, data structures
Round 4 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and support, fostering my passion for technology and problem-solving.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have two siblings; my older brother is an engineer, and my younger sister is studying computer science.

    • Family gatherings often involve discussions about technology and innovation, inspiring my career choice.

    • ...

  • Answered by AI
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have gone though 3 levels of technical interviews followed by manageral discussion and HR discussion

Embedded Developer Interview Questions Asked at Other Companies

asked in Bosch
Q1. What is the difference between a null pointer and a void pointer?
asked in Aptiv
Q2. What are storage class specifiers in C?
asked in Cognizant
Q3. Where are memory stack, local, global, and static variables store ... read more
asked in Capgemini
Q4. What is the difference between a Microprocessor and a Microcontro ... read more
Q5. What are flip-flops and how do they function in digital electroni ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 2 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 - Technical 

(5 Questions)

  • Q1. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called automatically when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI
  • Q2. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor is used to create a new object as a copy of an existing object, while assignment operator is used to assign values from one object to another.

    • Copy constructor is called when a new object is created from an existing object, while assignment operator is called when an existing object is assigned values from another object.

    • Copy constructor creates a new object with its own memory space, while assignment o...

  • Answered by AI
  • Q3. What is static function
  • Ans. 

    A static function is a function that is associated with a class rather than an instance of the class.

    • Static functions can be called without creating an instance of the class.

    • Static functions are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: 'Math.max()' in JavaScript is a static fun...

  • Answered by AI
  • Q4. Write Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q5. What is single ton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If ur c++ developer go through the c++ 11/14 concept

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
  • Ans. 

    Virtual inheritance allows a derived class to inherit from a base class without creating duplicate base class subobjects.

    • Virtual inheritance is used to resolve the Diamond Problem in C++ where a class inherits from two classes that have a common base class.

    • It ensures that only one copy of the base class is inherited by the derived class.

    • Virtual inheritance introduces a virtual base class subobject to the derived class,...

  • Answered by AI
  • Q2. Explained about vtptr and vtable initialisation and structure
  • Ans. 

    vtptr and vtable are key components of C++'s dynamic polymorphism, enabling method resolution at runtime.

    • vtable (virtual table) is a static table created for each class with virtual functions, containing pointers to the virtual functions.

    • vtptr (virtual table pointer) is a pointer in each object of a class that points to the vtable of its class.

    • When an object is created, its vtptr is initialized to point to the vtable o...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is the implementation of a class for string operations?
  • Ans. 

    A class for string operations can include methods for concatenation, substring extraction, length calculation, etc.

    • Create a class with methods like concatenateStrings, extractSubstring, calculateLength, etc.

    • Use string manipulation functions like substring, concat, length, etc. within the class methods.

    • Ensure error handling for edge cases like empty strings or out-of-bounds indices.

    • Example: class StringOperations { conc...

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Why do you want to join this company?
  • Ans. 

    I admire your company's innovative approach and commitment to quality, which aligns with my career goals and values as a developer.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I want to work on impactful projects.

    • I appreciate your commitment to professional development, such as mentorship programs, which will help me grow my skills.

    • The collaborative culture here fosters c...

  • Answered by AI
  • Q2. What are the sql constraints?
  • Ans. 

    SQL constraints are rules applied to table columns to enforce data integrity and validity.

    • PRIMARY KEY: Uniquely identifies each record in a table. Example: `CREATE TABLE Users (UserID INT PRIMARY KEY);`

    • FOREIGN KEY: Ensures referential integrity between two tables. Example: `FOREIGN KEY (UserID) REFERENCES Users(UserID)`.

    • UNIQUE: Ensures all values in a column are different. Example: `CREATE TABLE Users (Email VARCHAR(25...

  • Answered by AI
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 Jun 2023. 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 - Coding Test 

It had a test combining both coding and aptitude. It was of 90 minutes. Questions were decent and doable.

Round 3 - One-on-one 

(1 Question)

  • Q1. Mostly asked about resume and subjects you took in college.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study your resume well.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

30 min 30 ques and gaming ques

Round 2 - Technical 

(2 Questions)

  • Q1. What is ML and AI in your project?
  • Ans. 

    ML and AI are used in our project to analyze user behavior and provide personalized recommendations.

    • ML algorithms are used to analyze user data and predict user preferences.

    • AI is used to provide personalized recommendations based on the analysis of user behavior.

    • Examples include recommendation systems for e-commerce websites and personalized content suggestions on streaming platforms.

  • Answered by AI
  • Q2. What is lagging concept and more?
  • Ans. 

    Lagging concept refers to a concept or idea that is behind or not up to date compared to current standards or practices.

    • Refers to outdated technology or methods in software development

    • Can lead to inefficiencies, bugs, or security vulnerabilities

    • Examples include using deprecated libraries or not following best practices for coding

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Schneider Electric Software Developer interview:
  • HTML
Interview preparation tips for other job seekers - you can acheive if u want to . Just keep trying

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. General overview of tech stack.
Round 2 - Technical 

(1 Question)

  • Q1. General overview of the tech stack
Round 3 - HR 

(1 Question)

  • Q1. General overview of the tech stack

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Scenario based questions on Python.
  • Q2. Automate a travel booking website using python and selenium.
  • Ans. 

    Automating a travel booking website using Python and Selenium involves writing scripts to simulate user actions.

    • Use Selenium WebDriver to automate browser actions

    • Identify web elements using locators like ID, class, name, etc.

    • Use Python libraries like requests and BeautifulSoup for web scraping

    • Implement test cases to ensure the website functions as expected

    • Handle exceptions and errors that may occur during automation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at core python concepts.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How many Degree of freedom controlled in fixture?
  • Ans. 

    The number of degrees of freedom controlled in a fixture depends on the type and complexity of the fixture.

    • A simple fixture may control only one degree of freedom, such as rotation around a single axis.

    • A more complex fixture may control multiple degrees of freedom, such as rotation around multiple axes and translation in multiple directions.

    • The number of degrees of freedom controlled in a fixture can also depend on the...

  • Answered by AI
  • Q2. 12 Degree Of Freedom.
  • Ans. 

    12 Degree of Freedom refers to the number of independent movements a rigid body can make in 3D space.

    • A rigid body with 12 degrees of freedom can move in any direction and rotate around any axis.

    • The 12 degrees of freedom are divided into 6 translational and 6 rotational degrees of freedom.

    • Examples of systems with 12 degrees of freedom include a spacecraft in orbit or a robot arm with 6 joints.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - To sound in manufacturing process and GD &T ( Machining, Sheetmetal, Fabrication.)

Agiliad Technologies Interview FAQs

How many rounds are there in Agiliad Technologies Embedded Developer interview?
Agiliad Technologies interview process usually has 2 rounds. The most common rounds in the Agiliad Technologies interview process are Technical.
How to prepare for Agiliad Technologies Embedded Developer interview?
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 Agiliad Technologies. The most common topics and skills that interviewers at Agiliad Technologies expect are Embedded Development, Linux, C++, Embedded C and C.
What are the top questions asked in Agiliad Technologies Embedded Developer interview?

Some of the top questions asked at the Agiliad Technologies Embedded Developer interview -

  1. Arbistration in ...read more
  2. Communication proto...read more

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Senior Software Engineer
406 salaries
unlock blur

₹5 L/yr - ₹11.4 L/yr

Technical Lead
179 salaries
unlock blur

₹12.7 L/yr - ₹22.3 L/yr

Senior Engineer
111 salaries
unlock blur

₹4.8 L/yr - ₹17.5 L/yr

Software Engineer
91 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Senior Technical Lead
47 salaries
unlock blur

₹16.8 L/yr - ₹29.3 L/yr

Explore more salaries
Compare Agiliad Technologies with

Schneider Electric

4.1
Compare

Rockwell Automation

3.6
Compare

GKN

3.8
Compare

Falcon Autotech

3.9
Compare
write
Share an Interview