Upload Button Icon Add office photos

Filter interviews by

Accolade Electronics Interview Questions, Process, and Tips

Updated 10 Aug 2024

Top Accolade Electronics Interview Questions and Answers

Accolade Electronics Interview Experiences

Popular Designations

3 interviews found

I applied via Walk-in and was interviewed before Jul 2020.Ā There were 3 interview rounds.

Interview QuestionnaireĀ 

3 Questions

  • Q1. He asked me about microcontroller , microprocessor and all electronic device
  • Q2. He checked my confidence
  • Q3. They need a good quality engineer šŸ˜œ

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test. It lasted for about 30 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. electronic engineering related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher. You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1.Ā Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024.Ā There was 1 interview round.

Round 1 - TechnicalĀ 

(4 Questions)

  • Q1. Osgi annotations
  • Q2. Sql query for finding the highest salary
  • Ans. 

    Use SQL query with MAX() function to find the highest salary in a table.

    • Use SELECT MAX(salary) FROM employees;

    • Make sure to replace 'employees' with the actual table name where salary is stored.

    • Consider using GROUP BY if there are multiple departments or categories.

    • You can also use ORDER BY salary DESC LIMIT 1 for the same result.

  • Answered by AI
  • Q3. What is IOC in spring?
  • Ans. 

    IOC stands for Inversion of Control in Spring, a design principle where the control of object creation and lifecycle is shifted to a container or framework.

    • IOC helps in decoupling the code, making it easier to manage and test.

    • In Spring, IOC is achieved through Dependency Injection, where objects are provided with their dependencies rather than creating them.

    • IOC container in Spring manages the lifecycle of beans and the...

  • Answered by AI
  • Q4. What is hibernae in spring?
  • Ans. 

    Hibernate in Spring is an ORM tool that simplifies database operations by mapping Java objects to database tables.

    • Hibernate is an ORM (Object-Relational Mapping) tool used in Spring framework

    • It simplifies database operations by mapping Java objects to database tables

    • It provides automatic generation of SQL queries based on Java classes and annotations

  • Answered by AI

Skills evaluated in this interview

Backend Developer Interview Questions asked at other Companies

Q1.Ā Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)

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

Embedded Software Developer Interview Questions asked at other Companies

Q1.Ā How many result cases are possible when to find maximum of three numbers. This is tricky question
View answer (3)

Jobs at Accolade Electronics

View all

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Aug 2021.Ā 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 - TechnicalĀ 

(4 Questions)

  • Q1. Planning related questions
  • Q2. SAP excel related questions
  • Q3. Previous work experience
  • Q4. Order management related
Round 3 - One-on-oneĀ 

(2 Questions)

  • Q1. Mechanical engineering related
  • Q2. Order management Sap excel
Round 4 - HRĀ 

(2 Questions)

  • Q1. Communication related
  • Q2. Salary discussion related

Interview Preparation Tips

Topics to prepare for TE Connectivity Senior Associate interview:
  • SAP
  • Excel
  • Order Management
Interview preparation tips for other job seekers - Strong SAP, order management, Excel and good previous company experience

Analyst Interview Questions & Answers

Flex user image Anonymous

posted on 23 Mar 2020

I applied via Naukri.com and was interviewed in Feb 2020.Ā There were 4 interview rounds.

Interview QuestionnaireĀ 

1 Question

  • Q1. Basic Accounting terms and journal entries. Have proper knowledge about basic accounting.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sure to gain knowledge about basic accounting concepts and have full confidence.
Don't be nervous at the time of interview.

I appeared for an interview before Sep 2020.

Round 1 - Coding TestĀ 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Coding question was given.

  • Q1. 

    Remove Vowels from a Given String

    Given a string STR of length N, your task is to remove all the vowels present in that string and return the modified string.

    Explanation:

    English alphabets ā€˜aā€™, ā€˜eā€™, ā€˜i...

  • Ans. 

    Remove vowels from a given string while maintaining the relative position of other characters.

    • Iterate through each character in the string and check if it is a vowel (a, e, i, o, u).

    • If the character is not a vowel, add it to the modified string.

    • Return the modified string as the output.

  • Answered by AI
Round 2 - Video CallĀ 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was first technical round with technical team.

  • Q1. What is the difference between MySQL and MongoDB?
  • Ans. 

    MySQL is a relational database management system, while MongoDB is a NoSQL database.

    • MySQL is a relational database, meaning it stores data in tables with rows and columns.

    • MongoDB is a NoSQL database, storing data in collections of JSON-like documents.

    • MySQL uses SQL for querying data, while MongoDB uses a query language similar to JSON.

    • MySQL is ACID-compliant, ensuring data integrity, while MongoDB sacrifices some ACID ...

  • Answered by AI
Round 3 - Video CallĀ 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Tehnical round 2.
Here my projects and internships were evaluated

  • Q1. Can you explain your projects, including the technologies used and your approach?
Round 4 - HRĀ 

Round duration - 30 minutes
Round difficulty - Easy

HR questions were asked and remuneration details were given to me

Interview Preparation Tips

Eligibility criteriaSSC and Diploma 70% & above, BE 6.5 cgpa & above, no live ATKTFlex interview preparation:Topics to prepare for the interview - OOPs Concepts, MySQL Database, MongoDB database, Data structures, PHP, JQuery, Angular6, Python, basic HR questionsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Start preparation as early as possible
Tip 2 : Prepare atleast 2 industry standard projects
Tip 3 : Focus on communication more

Application resume tips for other job seekers

Tip 1 : Explain yourself properly there, resume reflects your personality. Modify resume according to company/position requirements
Tip 2 : Do not write too much, it should be simple and decent

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview QuestionnaireĀ 

2 Questions

  • Q1. First they ask to introduce ourselves....which may look informal question as well formal , but you should never answer in casual way little bit of smartness and seriousness required but since they check ba...
  • Q2. How far your qualification helps you to fetch you for this job is it relevant to what you studied ?

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 Other and was interviewed before Oct 2019.Ā There were 3 interview rounds.

Interview QuestionnaireĀ 

2 Questions

  • Q1. How to react in a critical situation to customer. Need to explain about the issue or give solution for the issue?
  • Q2. How are you going to handle a 5 member team

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare in management level as well

I applied via Recruitment Consultant and was interviewed before Oct 2020.Ā There were 5 interview rounds.

Interview QuestionnaireĀ 

3 Questions

  • Q1. Project description
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for project management

    • Implemented user authentication and authorization

    • Integrated with third-party tools like JIRA and GitHub

    • Provided real-time project progress tracking

    • Generated reports for project analysis

  • Answered by AI
  • Q2. Python based problems
  • Q3. Embedded scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank about your self ration about your skills and maintain 2 way communication during the interview.

Accolade Electronics Interview FAQs

How many rounds are there in Accolade Electronics interview?
Accolade Electronics interview process usually has 1 rounds. The most common rounds in the Accolade Electronics interview process are Technical.
How to prepare for Accolade Electronics 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 C++, Chaps, Debugging, I2C and Linux.
What are the top questions asked in Accolade Electronics interview?

Some of the top questions asked at the Accolade Electronics interview -

  1. Sql query for finding the highest sal...read more
  2. 1. What is structure and un...read more
  3. What is IOC in spri...read more

Tell us how to improve this page.

Accolade Electronics Interview Process

based on 3 interviews

Interview experience

2
Ā Ā 
Poor
View more

Interview Questions from Similar Companies

Flex Interview Questions
4.0
Ā ā€¢Ā 189 Interviews
Foxconn Interview Questions
3.9
Ā ā€¢Ā 156 Interviews
Navitasys India Interview Questions
4.2
Ā ā€¢Ā 101 Interviews
TE Connectivity Interview Questions
4.1
Ā ā€¢Ā 84 Interviews
Salcomp Manufacturing Interview Questions
4.0
Ā ā€¢Ā 62 Interviews
Delta Electronics Interview Questions
4.0
Ā ā€¢Ā 54 Interviews
Prama Hikvision India Interview Questions
3.6
Ā ā€¢Ā 50 Interviews
Vertiv Interview Questions
3.9
Ā ā€¢Ā 49 Interviews
IDEMIA Interview Questions
3.9
Ā ā€¢Ā 47 Interviews
Efftronics Systems Interview Questions
3.6
Ā ā€¢Ā 44 Interviews
View all

Accolade Electronics Reviews and Ratings

based on 34 reviews

3.3/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.3

Salary

3.6

Job security

3.1

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 34 Reviews and Ratings
Executive Accounts and Finance

Pune

2-6 Yrs

Not Disclosed

Explore more jobs
Embedded Software Developer
12 salaries
unlock blur

ā‚¹2.5 L/yr - ā‚¹7.1 L/yr

Software Engineer
8 salaries
unlock blur

ā‚¹4.2 L/yr - ā‚¹13 L/yr

Embedded Software Engineer
8 salaries
unlock blur

ā‚¹2.4 L/yr - ā‚¹7 L/yr

Test Engineer
7 salaries
unlock blur

ā‚¹1.4 L/yr - ā‚¹2.4 L/yr

QA Engineer
7 salaries
unlock blur

ā‚¹1.8 L/yr - ā‚¹6.9 L/yr

Explore more salaries
Compare Accolade Electronics with

Flex

4.0
Compare

Foxconn

3.9
Compare

TE Connectivity

4.1
Compare

Vertiv

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview