Upload Button Icon Add office photos

Philips

Compare button icon Compare button icon Compare

Filter interviews by

Philips Firmware Developer Interview Questions, Process, and Tips

Updated 15 Aug 2024

Philips Firmware Developer Interview Experiences

1 interview found

Firmware Developer Interview Questions & Answers

user image asish kumar mondal

posted on 15 Aug 2024

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between structure and union
  • Ans. 

    Structure is a collection of different data types under one name, while union is a single memory location that can hold different data types at different times.

    • Structure allows each member to have its own memory location, while union shares a single memory location for all members.

    • In a structure, all members can be accessed simultaneously, while in a union, only one member can be accessed at a time.

    • Example: struct Pers...

  • Answered by AI
  • Q2. What is structure padding and how to pack a structure
  • Ans. 

    Structure padding is adding empty bytes to align data in memory. Packing a structure removes padding to save memory.

    • Structure padding ensures that data members are aligned to memory boundaries for efficient access

    • Padding bytes are added between data members to ensure alignment

    • Packing a structure removes padding to save memory but may impact performance

    • Example: struct example { char a; int b; } - sizeof(struct example)

  • Answered by AI
  • Q3. How to check stack overflow
  • Ans. 

    To check for stack overflow, monitor stack usage and set a limit to trigger an alert if exceeded.

    • Monitor stack usage by tracking the stack pointer and comparing it to the stack size.

    • Set a limit for stack usage and trigger an alert if the limit is exceeded.

    • Use tools like stack analyzers or profilers to detect stack overflow.

    • Implement stack canaries or guard zones to detect stack corruption.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Difference between semafore and mutex
  • Ans. 

    A semaphore is a signaling mechanism while a mutex is a locking mechanism used to control access to shared resources in multithreaded environments.

    • Semaphore is used to control access to a pool of resources, while mutex is used to control access to a single resource.

    • Semaphores can be used to allow multiple threads to access a shared resource simultaneously, while mutex allows only one thread to access the resource at a ...

  • Answered by AI
  • Q2. How to set the priority of a task
  • Ans. 

    Task priority can be set using priority levels or scheduling algorithms in firmware development.

    • Use priority levels to assign importance to tasks

    • Higher priority tasks are executed before lower priority tasks

    • Implement scheduling algorithms like preemptive scheduling or round-robin scheduling to manage task priorities

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why you want to join philips

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were aptitude questions and c language output questions and embedded system questions

Round 2 - Technical 

(1 Question)

  • Q1. Linked list and bit manipulation and one puzzle
Round 3 - Technical 

(1 Question)

  • Q1. Bits manipulation and 3 mental ability or you can say aptitude questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write monitor for APB protocol
  • Ans. 

    A monitor for APB protocol is a verification component that checks for protocol compliance in APB transactions.

    • Monitor should check for valid address, data, and control signals in APB transactions

    • It should detect and report any protocol violations or errors

    • Monitor should be able to track the state of the APB bus and ensure proper communication between master and slave devices

  • Answered by AI
  • Q2. Design FSM - halway with 2 detectors, accuire amout of pepole in room - only one person can pass halway each time.
  • Ans. 

    Design a finite state machine to count the number of people passing through a hallway with 2 detectors, allowing only one person at a time.

    • Create states for each detector and the hallway

    • Transition between states based on detector inputs

    • Use counters to keep track of the number of people passing through

    • Implement logic to prevent multiple people from passing simultaneously

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Samsung Research Verification Engineer interview:
  • FSMS
  • UVM

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Projects related questions
  • Q2. C program for array swapping
  • Ans. 

    A C program to swap elements in an array of strings

    • Use a temporary variable to swap elements in the array

    • Iterate through the array and swap elements at each index

  • Answered by AI

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 at Walchand College of Engineering, Sangli and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were mostly embedded c programming questions, like what will be the output of the given code, what is the error that will occur if this program runs, etc. Lasted about 30 minutes.

Round 2 - Technical 

(1 Question)

  • Q1. Questions were on communications protocols like I2C, UART, SPI, etc. Working and block diagram of project, operating modes of a transistor.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Asked about my previous work experience
  • Q2. About my last project in detailed
Round 2 - HR 

(2 Questions)

  • Q1. About my personal information and related to carrier goal
  • Q2. About the expectation of compensation
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were aptitude questions and c language output questions and embedded system questions

Round 2 - Technical 

(1 Question)

  • Q1. Linked list and bit manipulation and one puzzle
Round 3 - Technical 

(1 Question)

  • Q1. Bits manipulation and 3 mental ability or you can say aptitude questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Bit manipulation
  • Q2. Volatile keywords in c work in which way
  • Ans. 

    Volatile keyword in C is used to indicate that a variable may be changed unexpectedly by external factors.

    • Volatile keyword tells the compiler not to optimize the variable because it can be changed by external factors.

    • Commonly used for memory-mapped hardware registers or variables accessed by multiple threads.

    • Example: volatile int *ptr = (int *)0x1234; // pointer to a memory-mapped hardware register

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. How do you handle stress
  • Q2. How do you achieve work life balance

Interview Preparation Tips

Interview preparation tips for other job seekers - Kal

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic about project
  • Q2. C coding question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Related embedded systems and manual testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Experienced bad culture in company.... So much politics played by manager and team members...

Philips Interview FAQs

How many rounds are there in Philips Firmware Developer interview?
Philips interview process usually has 3 rounds. The most common rounds in the Philips interview process are Technical and HR.
What are the top questions asked in Philips Firmware Developer interview?

Some of the top questions asked at the Philips Firmware Developer interview -

  1. What is structure padding and how to pack a struct...read more
  2. How to set the priority of a t...read more
  3. How to check stack overf...read more

Tell us how to improve this page.

Philips Firmware Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Samsung Interview Questions
3.9
 • 556 Interviews
Siemens Interview Questions
4.1
 • 429 Interviews
Dell Interview Questions
4.0
 • 391 Interviews
Bosch Interview Questions
4.2
 • 334 Interviews
HARMAN Interview Questions
3.8
 • 257 Interviews
OPPO Interview Questions
4.0
 • 210 Interviews
LG Electronics Interview Questions
4.0
 • 192 Interviews
Vivo Interview Questions
4.1
 • 191 Interviews
Blue Star Interview Questions
4.0
 • 158 Interviews
View all
Software Technologist 1
200 salaries
unlock blur

₹11.1 L/yr - ₹34 L/yr

Software Engineer
181 salaries
unlock blur

₹5.4 L/yr - ₹21.4 L/yr

Senior Accounting Specialist
180 salaries
unlock blur

₹5.6 L/yr - ₹19 L/yr

Software Technologist 2
172 salaries
unlock blur

₹16 L/yr - ₹36.5 L/yr

Deputy Manager
156 salaries
unlock blur

₹8.5 L/yr - ₹23 L/yr

Explore more salaries
Compare Philips with

Siemens

4.1
Compare

GE Healthcare

4.1
Compare

Honeywell Automation

3.8
Compare

Bosch

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