What is the significance of watchdog timer in embedded systems?
Describe to me some bad code you've read or inherited lately.
What kinds of problems can you hit with locking model? And a lockless model?
look at following code void foo(void) { unsigned int a = 6; int b = -20; int c = (a+b > 6) ? 1:0; } o/p is 1 why explain promotion rules
What is an embedded system and why it is used?
What happens when recursive functions are declared inline?
How i/o devices are classified for embedded system?
What is the need for dmac in es?
Is tasklets or workqueues or softirqs are scheduled by the scheduler?
Discuss the differences between mocks and stubs/fakes and where you might use them (answers aren't that important here, just the discussion that would ensue).
Describe a pattern that is not the factory pattern?
Can a volatile be constant? Like
What is the purpose of using critical sections?