Embedded System Question:
Download Questions PDF

Explain Order of constructor and destructor call in case of multiple inheritance?

Answer:

constructors top-down, destructors bottom-up.

eg:

in parent's constructor

in child's constructor

in grandchild's constructor

in grandchild's destructor

in child's destructor

in parent's destructor

Download Embedded System Interview Questions And Answers PDF

Previous QuestionNext Question
Explain Operations involving unsigned and signed? unsigned will be converted to signed?Explain What are the features different in pSOS and vxWorks?