__________ refers to setting a maximum number with respect to roles.
A. Cardinality B. Prerequisite
C. Exclusive D. Hierarchy
A. Cardinality
Computer Science & Information Technology
You might also like to view...
Which operation will find the remainder when 15 is divided by 6?
(a) 15 / 6 (b) 15 % 6 (c) 15 ^ 6 (d) 15 * 6
Computer Science & Information Technology
If you had a class Surgery, and you were going to derive a new class BrainSurgery, but you wanted all of the Surgery’s members in BrainSurgery to be private, how would you accomplish this task?
A. Make all the Surgery members private, then use class BrainSurgery : public Surgery. B. This is not possible in C++. C. You would need to write a brand new class and copy the Surgery code into it. D. Use the private base class specifier, class BrainSurgery : private Surgery.
Computer Science & Information Technology