True or False True or False If false state why or provide a
True or False
True or False? If false, state why (or provide a counterexample).
(a) _____
A C++ structure, or struct, like the C++ array, is a homogeneous data structure. (i.e., all data is of the same type)
(b) _____
A class is a type similar to a structure type that normally has member functions as well as member variables.
(c) _____
You can change the behavior of + for the int type using operator overloading.
(d) _____
If class D is derived from class B, we speak of D as the child class and B as the parent class.
(e) ______
A class may not have another class type object as a member.
(f) _____
A static variable of a class cannot be changed.
(g) _____
A constructor is a special kind of member function. It is automatically called when an object of that class is declared.
(h) _____
A friend function has access only to the private members and member functions of the class (and all objects of that class) of which it is a friend.
| (a) _____ | A C++ structure, or struct, like the C++ array, is a homogeneous data structure. (i.e., all data is of the same type) |
| (b) _____ | A class is a type similar to a structure type that normally has member functions as well as member variables. |
| (c) _____ | You can change the behavior of + for the int type using operator overloading. |
| (d) _____ | If class D is derived from class B, we speak of D as the child class and B as the parent class. |
| (e) ______ | A class may not have another class type object as a member. |
| (f) _____ | A static variable of a class cannot be changed. |
| (g) _____ | A constructor is a special kind of member function. It is automatically called when an object of that class is declared. |
| (h) _____ | A friend function has access only to the private members and member functions of the class (and all objects of that class) of which it is a friend. |
Solution
a) false A C++ structure, or struct, like the C++ array, is a homogeneous data structure
b) true
c) true
d) true
e) flase
A class may not have another class type object as a member.
f) true
g)true
h) false , A friend function has access only to the private members and member functions of the class (and all objects of that class) of which it is a friend.
| A class may not have another class type object as a member. |
