Where Do You See Yourself in 5 Years?
Firmware Development Engineer Interview Questions
2,356 firmware development engineer interview questions shared by candidates
What will the following code print out on the terminal? int main(){ int a = 5; foo(a); printf("%d",a); } void foo(int a){ int* ptr = &a; *a = 10; }
Write a driver for dimming an LED.
3 light bulbs 3 sockets question
How are you
The interview programming challenge was to implement some parts of an LRU cache.
How did control transfer from Bootloader to Application?
Fizz buzz
Bit manipulation questions
How could the following be refactored to reduce the amount of memory used by this C code? int nFirstOne =1, nSecondOne=2; int nTemp = nFirstOne; nFirstOne = nSecondOne; nSecondOne = nTemp;
Viewing 461 - 470 interview questions