Tell us what is the need for an infinite loop in embedded systems?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me when one must use recursion function? Mention what happens when recursion functions are declared inline?
Mention how I/O devices are classified for embedded system?
What is a 'const' variable?
Explain what is interrupt latency? How can you reduce it?
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 the repository pattern?
DMA deals with which address (physical/virtual addresses) ?
Why are interfaces important?
What is the difference between asynchrony and concurrency?
What elements of oo design are most prone to abuse? How would you mitigate that?
Explain the differences between stateless and stateful systems, and impacts of state on parallelism.
What is difference between using a macro and a in line function?