Suppose class Child is derived from class Parent that was in turn derived from class GrandParent. When we destroy an object of class Child, three destructors are called: i) Child, ii) Parent, iii )GrandParent.. What is the order?

a) Child, Parent, GrandParent
b) Parent, GrandParent, Child
c) GrandParent, Child, Parent
d) GrandParent, Parent, Child
e) GrandParent, Child, Parent


a) Child, Parent, GrandParent

Computer Science & Information Technology

You might also like to view...

Which one of the following statements clears the Text property of a Text Box control named address Text Box?

a. addressTextBox.Text = Text.Clear; b. addressTextBox.Text = ""; c. addressTextBox = Nothing; d. addressTextBox.Empty();

Computer Science & Information Technology

Explain why deploying software as a service can reduce the IT support costs for a company. What additional costs might arise if this deployment model is used?

What will be an ideal response?

Computer Science & Information Technology

To manage authorized connections to external networks, which server would a client/server network include?

a. database c. communications b. authentication d. application

Computer Science & Information Technology

Writing a stack ADT frees us from the trouble of writing a different stack implementation each time we need one.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology