CuriousTab
Search
CuriousTab
Home
Aptitude
Computer
C Programming
C# Programming
C++ Programming
Database
Java Programming
Networking
Engineering
Biochemical Engineering
Biochemistry
Biotechnology
Chemical Engineering
Civil Engineering
Computer Science
Digital Electronics
Electrical Engineering
Electronics
Electronics and Communication Engineering
Mechanical Engineering
Microbiology
Technical Drawing
GK
Current Affairs
General Knowledge
Reasoning
Data Interpretation
Logical Reasoning
Non Verbal Reasoning
Verbal Ability
Verbal Reasoning
Exams
AIEEE
Bank Exams
CAT
GATE
IIT JEE
TOEFL
Jobs
Analyst
Bank PO
Database Administrator
IT Trainer
Network Engineer
Project Manager
Software Architect
Discussion
Home
‣
C++ Programming
‣
Objects and Classes
Comments
Question
Which of the following statement is correct with respect to the use of friend keyword inside a class?
Options
A. A private data member can be declared as a friend.
B. A class may be declared as a friend.
C. An object may be declared as a friend.
D. We can use friend keyword as a class name.
Correct Answer
A class may be declared as a friend.
Objects and Classes problems
Search Results
1. Which of the following type of data member can be shared by all instances of its class?
Options
A. Public
B. Inherited
C. Static
D. Friend
Show Answer
Scratch Pad
Discuss
Correct Answer: Static
2. Which of the following statements about virtual base classes is correct?
Options
A. It is used to provide multiple inheritance.
B. It is used to avoid multiple copies of base class in derived class.
C. It is used to allow multiple copies of base class in a derived class.
D. It allows private members of the base class to be inherited in the derived class.
Show Answer
Scratch Pad
Discuss
Correct Answer: It is used to avoid multiple copies of base class in derived class.
3. What does the class definitions in following code represent?
class Bike { Engine objEng; }; class Engine { float CC; };
Options
A. kind of relationship
B. has a relationship
C. Inheritance
D. Both A and B
Show Answer
Scratch Pad
Discuss
Correct Answer: has a relationship
4. How can we make a class abstract?
Options
A. By making all member functions constant.
B. By making at least one member function as pure virtual function.
C. By declaring it abstract using the static keyword.
D. By declaring it abstract using the virtual keyword.
Show Answer
Scratch Pad
Discuss
Correct Answer: By making at least one member function as pure virtual function.
5. Which of the following statements is correct about the constructors and destructors?
Options
A. Destructors can take arguments but constructors cannot.
B. Constructors can take arguments but destructors cannot.
C. Destructors can be overloaded but constructors cannot be overloaded.
D. Constructors and destructors can both return a value.
Show Answer
Scratch Pad
Discuss
Correct Answer: Constructors can take arguments but destructors cannot.
6. Which of the following statements are correct for a static member function?
It can access only other static members of its class.
It can be called using the class name, instead of objects.
Options
A. Only 1 is correct.
B. Only 2 is correct.
C. Both 1 and 2 are correct.
D. Both 1 and 2 are incorrect.
Show Answer
Scratch Pad
Discuss
Correct Answer: Both 1 and 2 are correct.
7. Which of the following statements is correct when a class is inherited publicly?
Options
A. Public members of the base class become protected members of derived class.
B. Public members of the base class become private members of derived class.
C. Private members of the base class become protected members of derived class.
D. Public members of the base class become public members of derived class.
Show Answer
Scratch Pad
Discuss
Correct Answer: Public members of the base class become public members of derived class.
8. Which of the following access specifies is used in a class definition by default?
Options
A. Protected
B. Public
C. Private
D. Friend
Show Answer
Scratch Pad
Discuss
Correct Answer: Private
9. Which of the following statement is correct regarding destructor of base class?
Options
A. Destructor of base class should always be static.
B. Destructor of base class should always be virtual.
C. Destructor of base class should not be virtual.
D. Destructor of base class should always be private.
Show Answer
Scratch Pad
Discuss
Correct Answer: Destructor of base class should always be virtual.
10. What does a class hierarchy depict?
Options
A. It shows the relationships between the classes in the form of an organization chart.
B. It describes "has a" relationships.
C. It describes "kind of" relationships.
D. It shows the same relationship as a family tree.
Show Answer
Scratch Pad
Discuss
Correct Answer: It describes "kind of" relationships.
Comments
There are no comments.
Enter a new Comment
Save
More in C++ Programming:
Constructors and Destructors
Functions
Objects and Classes
OOPS Concepts
References