CRC CISP 400 C++ Quiz 7

Réussis tes devoirs et examens dès maintenant avec Quizwiz!

Base class constructors and assignment operators: 1. Are not inherited by derived classes. 2. Should not be called by derived class constructors and assignment operators. 3. Can be inherited by derived classes, but generally are not. 4. Can call derived-class constructors and assignment operators.

1. Are not inherited by derived classes.

When an object of a derived class is instantiated, the ________ constructor initializes the ________ members. 1. Base class, base class. 2. Derived class, base class. 3. Base class, derived class. 4. Derived class, public.

1. Base class, base class.

protected base class members cannot be accessed by: 1. Functions that are neither friends of the base class, derived-class member functions nor friends of a derived class. 2. friends of the base class. 3. Functions that are not derived-class member functions. 4. friends of derived classes.

1. Functions that are neither friends of the base class, derived-class member functions nor friends of a derived class.

Assuming the following is the beginning of the constructor definition for class BasePlus- CommissionEmployee which inherits from class Point, BasePlusCommissionEmployee::BasePlusCommissionEmployee ( string first, string last, string ssn, double sales, double rate, double salary) : CommissionEmployee( first, last, ssn, sales, rate ) The second line: 1. Invokes the CommissionEmployee constructor with arguments. 2. Causes a compiler error. 3. Is unnecessary because the CommissionEmployee constructor is called automatically. 4. Indicates inheritance.

1. Invokes the CommissionEmployee constructor with arguments.

Which of the following is most likely a base class of the other three? 1. automobile. 2. convertible. 3. miniVan. 4. sedan.

1. automobile.

To declare class subClass a privately derived class of superClass one would write: 1. class subclass : private superClass 2. class subclass :: private superClass 3. class subclass < private superClass > 4. class subclass inherits private superClass

1. class subclass : private superClass

Which of the following statements about inheriting base class constructors is false? 1. To inherit a base class's constructors, you write the following line of code in the derived class definition (BaseClass is the base class's name): 2. If an inherited base-class constructor has default arguments, the line of code in Part (a) causes the compiler to generate a derived-class constructor with the same default arguments. 3. By default, each inherited constructor has the same access level (public, protected or private) as its corresponding base-class constructor. 4. If the derived class does not explicitly define constructors, the compiler generates a default constructor in the derived class-even if it inherits other constructors from its base class.

2. If an inherited base-class constructor has default arguments, the line of code in Part (a) causes the compiler to generate a derived-class constructor with the same default arguments.

Theoretically, clients do not need to see the ________ of classes from which they derive other classes. 1. Header files. 2. Source code. 3. Object code. 4. Interface.

2. Source code.

From most restrictive to least restrictive, the access modifiers are: 1. protected, private, public 2. private, protected, public 3. private, public, protected 4. protected, public, private

2. private, protected, public

Assuming the definition, class BasePlusCommissionEmployee : public CommissionEmployee which of the following is false? 1. The colon ( : ) in the header of the class definition indicates inheritance. 2. The keyword public indicates the type of inheritance. 3. All the public and protected members of class BasePlusCommissionEmployee are inherited as public and protected members, respectively, into class CommissionEmployee. 4. CommissionEmployee is the base class and BasePlusCommissionEmployee is the derived class.

3. All the public and protected members of class BasePlusCommissionEmployee are inherited as public and protected members, respectively, into class CommissionEmployee.

Assuming the definition, class Circle : public Point which of the following is false? 1. Point is the base class and Circle is the derived class. 2. The keyword public indicates the type of inheritance. 3. All the public and protected members of class Circle are inherited as public and protected members, respectively, into class Point. 4. The colon ( : ) in the header of the class definition indicates inheritance.

3. All the public and protected members of class Circle are inherited as public and protected members, respectively, into class Point.

Assuming the following is the beginning of the constructor definition for class Circle which inherits from class Point, Circle::Circle( double r, int a, int b ) : Point( a, b ) The second line: 1. Causes a compiler error. 2. Indicates inheritance. 3. Invokes the Point constructor with values a and b. 4. Is unnecessary because the Point constructor is called automatically.

3. Invokes the Point constructor with values a and b.

When should base class members be declared protected? 1. When all clients should be able to access these members. 2. When these members are used only by member functions of this base class. 3. When these members should be available only to derived classes (and friends), but not to other clients. 4. The protected access specified should never be used.

3. When these members should be available only to derived classes (and friends), but not to other clients.

When deriving a class from a protected base class, the public members of the base class become ________ and the protected members of the base class become ________? 1. protected, private 2. public, private 3. protected, protected 4. public, protected

3. protected, protected

Which of the following is not a kind of inheritance in C++? 1. public. 2. private. 3. static. 4. protected.

3. static.

Which of the following is not one of the disadvantages of using the "copy-and-paste" approach to duplicating code from one class into another class? 1. Errors are prone to be spread around. 2. It is time consuming. 3. It forces the system to store many physical copies of the code, creating a code-maintenance nightmare. 4. All of these are disadvantages of the "copy-and-paste" approach.

4. All of these are disadvantages of the "copy-and-paste" approach.

What is the order in which their constructors and destructors will be called when an object of class A is instantiated and then destroyed? 1. A constructor, B constructor, B destructor, A destructor. 2. B constructor, A constructor, B destructor, A destructor. 3. A constructor, B constructor, A destructor, B destructor. 4. B constructor, A constructor, A destructor, B destructor.

4. B constructor, A constructor, A destructor, B destructor.

Which of the following is true about using inheritance in software engineering? 1. Common attributes and behaviors should be factored out of closely related classes and placed into a base class from which the original classes can now inherit. 2. It is best to create a huge class library to make it easy for a client to find the most appropriate class for his or her needs. 3. A class produced through inheritance should be as large as possible to fully encompass all of the functionality it should offer. 4. The standard C++ libraries that are shipped with C++ compilers are usually enough to accomplish anything an application might need to do.

1. Common attributes and behaviors should be factored out of closely related classes and placed into a base class from which the original classes can now inherit.

The is-a relationship represents. 1. Composition. 2. Inheritance. 3. Information hiding. 4. A friend.

2. Inheritance.

Select the false statement regarding inheritance. 1. A derived class can contain more attributes and behaviors than its base class. 2. A derived class can be the base class for other derived classes. 3. Some derived classes can have multiple base classes. 4. Base classes are usually more specific than derived classes.

4. Base classes are usually more specific than derived classes.

Which forms of inheritance are is-a relationships? 1. All forms of inheritance are is-a relationships. 2. Only public and private. 3. Only public and protected. 4. Only public.

4. Only public.

Which of the following is not a good example of a hierarchy likely to be modeled by inheritance? 1. Airplanes. 2. Geometric shapes. 3. Animals. 4. Prime numbers.

4. Prime numbers.


Ensembles d'études connexes

Unit 3 - Quiz 7 - Neurotransmitters

View Set

LAW 231 Missouri State (Philips)

View Set

Wireless, Chapter 9 - Design for Wireless Networking

View Set

Architecture Semester Exam Review

View Set

AP World History Practice Exam A

View Set