Upload Button Icon Add office photos

Accolade Electronics

Compare button icon Compare button icon Compare

Filter interviews by

Accolade Electronics Embedded Software Developer Interview Questions and Answers

Updated 27 Jul 2021

Accolade Electronics Embedded Software Developer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. 1. What is structure and union
  • Ans. 

    Structure and union are data structures in C programming language.

    • Structure is a collection of variables of different data types under a single name.

    • Union is a special data type that allows storing different data types in the same memory location.

    • Structures are used to represent a record while unions are used for memory optimization.

    • Structures are accessed using dot (.) operator while unions are accessed using arrow (-...

  • Answered by AI
  • Q2. 2. About projects

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (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 Accolade Electronics?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Regarding protocols and app security.
  • Q2. How will you secure an iOS application?
  • Ans. 

    Securing an iOS application involves implementing various measures to protect user data and prevent unauthorized access.

    • Implement secure authentication mechanisms such as biometric authentication or two-factor authentication.

    • Use encryption to protect sensitive data both in transit and at rest.

    • Implement secure coding practices to prevent common vulnerabilities such as SQL injection or cross-site scripting.

    • Regularly upda...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice coding questions like Fibonacci series, array etc.

Skills evaluated in this interview

Embedded Software Developer Interview Questions Asked at Other Companies

Q1. How many possible outcomes are there when determining the maximum ... read more
Q2. Write a C program to check if a number is a power of 2.
Q3. What is the difference between volatile const int a and const vol ... read more
asked in FEV
Q4. what is interrupt service routine, watchdog timer, lambda functio ... read more
Q5. How can you sort an array in place, using minimal additional memo ... read more

I appeared for an interview in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. How you will work under a supervisor.
  • Ans. 

    I will communicate effectively, follow instructions, seek feedback, and collaborate with my supervisor.

    • Communicate regularly with supervisor to provide updates on progress and ask for clarification when needed

    • Follow instructions carefully and ask for help if unsure about a task

    • Seek feedback on my work to improve and grow professionally

    • Collaborate with supervisor and team members to achieve project goals

    • Provide suggesti...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: I got selected for next round.
Tips: Do not loses hope.
Duration: 1 hour
Total Questions: 10

Round: Technical + HR Interview
Experience: It was nice experience.
Tips: Do not loses hope.

Skills: Technical Analysis, Managing People
College Name: IIT Kharagpur

I applied via Company Website and was interviewed in Apr 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 

(1 Question)

  • Q1. C language ,java language and oops,

Interview Preparation Tips

Topics to prepare for IDEMIA Software Developer interview:
  • Programming
  • Core Java
Interview preparation tips for other job seekers - sir,i am a fresher I have a theoretical knowledge , I am a good practice in programming language
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mostly about .Net, AWS, Angular
Round 2 - Technical 

(1 Question)

  • Q1. Mostly about AWS, .Net
Round 3 - HR 

(1 Question)

  • Q1. Behavioral Round + Salary Discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

The authentication related questions and architecture wise too.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare authentication types and How the middle ware working.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. Basic family and behaviour
  • Q2. How is your strength?
  • Ans. 

    My strength lies in my problem-solving skills, adaptability, and strong communication, which help me excel in software development.

    • Problem-solving: I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.

    • Adaptability: I quickly learn new technologies, demonstrated when I transitioned from Java to Python for a project.

    • Strong communication: I effectively collaborate with cross-functi...

  • Answered by AI
  • Q3. What is family background?
  • Ans. 

    Family background refers to the social, economic, and cultural environment in which a person is raised.

    • Includes parents' education levels, e.g., a parent with a PhD may influence academic aspirations.

    • Considers socio-economic status, such as growing up in a wealthy family vs. a low-income household.

    • Cultural influences, like traditions and values passed down, shape personal beliefs and behaviors.

    • Family structure, e.g., s...

  • Answered by AI
Are these interview questions helpful?

I applied via Company Website and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. C programming,Java language,oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Sir , i am a fresher . I have a throttical knowledge
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

An aptitude test having questions on html, SQL, oops concepts and coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Joins in SQL.
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RI...

  • Answered by AI
  • Q2. How to create an HTML table.
  • Ans. 

    HTML tables can be created using the <table> element with nested <tr> (table row), <th> (table header), and <td> (table data) elements.

    • Use the <table> element to create the table structure.

    • Use <tr> elements to define rows within the table.

    • Use <th> elements for table headers and <td> elements for table data within each row.

    • Add attributes like colspan and rowspan to merge c...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2023. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Self-introduction Basic C questions
  • Q2. Communication protocol and projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply for this company as they will come back with feedback

Accolade Electronics Interview FAQs

How to prepare for Accolade Electronics Embedded Software 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 Accolade Electronics. The most common topics and skills that interviewers at Accolade Electronics expect are Debugging, Embedded Software, Linux, Networking Protocols and Programming.
What are the top questions asked in Accolade Electronics Embedded Software Developer interview?

Some of the top questions asked at the Accolade Electronics Embedded Software Developer interview -

  1. 1. What is structure and un...read more
  2. 2. About proje...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Flex Interview Questions
4.0
 • 201 Interviews
Foxconn Interview Questions
3.8
 • 186 Interviews
Navitasys India Interview Questions
4.1
 • 110 Interviews
TE Connectivity Interview Questions
4.1
 • 90 Interviews
Vertiv Interview Questions
3.9
 • 55 Interviews
IDEMIA Interview Questions
3.8
 • 50 Interviews
Ukb Electronics Interview Questions
3.8
 • 46 Interviews
View all
Accolade Electronics Embedded Software Developer Salary
based on 13 salaries
₹3 L/yr - ₹7.1 L/yr
26% less than the average Embedded Software Developer Salary in India
View more details

Accolade Electronics Embedded Software Developer Reviews and Ratings

based on 2 reviews

2.1/5

Rating in categories

3.0

Skill development

1.7

Work-life balance

1.7

Salary

3.6

Job security

1.7

Company culture

1.7

Promotions

1.4

Work satisfaction

Explore 2 Reviews and Ratings
Embedded Software Developer
13 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Project Coordinator
12 salaries
unlock blur

₹7 L/yr - ₹9.8 L/yr

Embedded Software Engineer
9 salaries
unlock blur

₹2.5 L/yr - ₹9.5 L/yr

Software Engineer
8 salaries
unlock blur

₹4.9 L/yr - ₹11.8 L/yr

QA Engineer
7 salaries
unlock blur

₹3.6 L/yr - ₹9 L/yr

Explore more salaries
Compare Accolade Electronics with

Flex

4.0
Compare

Foxconn

3.8
Compare

TE Connectivity

4.1
Compare

Vertiv

3.9
Compare
write
Share an Interview