Which of the following is not a kind of inheritance in C++?
a. public.
b. private.
c. static.
d. protected.
c. static.
Computer Science & Information Technology
You might also like to view...
is a set of methodologies that try to get software implemented quickly with fewer resources than previous methodologies.
a. Refactoring. b. Agile software development. c. Design patterns. d. None of the above.
Computer Science & Information Technology
Which of the following code displays the area of a circle if the radius is positive.
A. if (radius <= 0) cout << radius * radius * 3.14159; B. if (radius != 0) cout << radius * radius * 3.14159; C. if (radius >= 0) cout << radius * radius * 3.14159; D. if (radius > 0) cout << radius * radius * 3.14159;
Computer Science & Information Technology