Which of the following class definitions makes the public members of the class aClass become the public members of the class bClass?
A. class aClass: public bClass
{
//...
};
B. class bClass: public aClass
{
//...
};
C. class bClass: aClass
{
//...
};
D. class aClass: bClass
{
//...
};
Answer: B
You might also like to view...
EX 1.1. Give examples of the two types of Java comments and explain the differences between them.
What will be an ideal response?
The two major types of system software programs are utility programs and the ________
A) charms B) operating system C) application software D) user interface
Match the following Outlook Express folders to their descriptions:
I. Inbox A. Stores copies of messages that you have sent. II. Outbox B. Stores messages that have been sent to you. III. Sent Items C. Stores messages that you are in the process of writing. IV. Drafts D. Contains folders that are stored on your computer and mail server. V. Local Folders E. Stores messages that you want to send.
In a Perl program, to go from one function to another, you simply call the function by entering which of the following in your source code?
A. variable B. keyword C. name D. comment