The components of a class are called the ____ of the class.
A. operators
B. friends
C. objects
D. members
Answer: D
You might also like to view...
Which of the following constant definitions is correct?
a) const float PRICE = 3,500; b) const int LENGTH = 6.5; c) const float COST = $700.0; d) const int MY_HEIGHT = 60 / 12;
In C#, you declare a reference parameter by writing the ____________ keyword before the parameter variable's data type.
a. const b. ref c. out d. private
Answer the following statements true (T) or false (F)
1. The term walled garden refers to an array of apps available for purchase that do not require pre-approval. 2. Unless developing a specialized app that will cost more than $19.95, prototyping is most likely the best way to develop an app. 3. When developing an app, quick releases are important, and there is a strong advantage to being the first to introduce a certain type of app. 4. Copying other developers' software is a good way to get an app into the market quickly.
private fields of a superclass can be accessed in a subclass
a. by calling private methods declared in the superclass. b. by calling public or protected methods declared in the superclass. c. directly. d. All of the above.