What is a memory leak? What is a segmentation fault?
Describe a software development life cycle that you've managed.
Tell me what are the 4 types of inheritance relationship?
What is mutex precisely used for?
Would you call yourself a craftsman (craftsperson) and what does that word mean to you?
what is meant by a forward reference in c?
What are the different types of system involved in embedded system?
Explain what is size of character, integer, integer pointer, character pointer?
Tell me what are inline functions?
What's so great about <cool web technology of the day>?
Why do we need virtual device drivers when we have physical device drivers?
Tell me why embedded system is useful?
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