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
OOPS Concepts problems
1. Which of the following ways are legal to access a class data member using this pointer?
Options
A.
this->x
B.
this.x
C.
*this.x
D.
*this-x
Show Answer
Scratch Pad
Discuss
Correct Answer:
this->x
2. Which of the following is correct about the statements given below?
All operators can be overloaded in C++.
We can change the basic meaning of an operator in C++.
Options
A. Only I is true.
B. Both I and II are false.
C. Only II is true.
D. Both I and II are true.
Show Answer
Scratch Pad
Discuss
Correct Answer: Both I and II are false.
3. Which of the following operator is overloaded for object cout?
Options
A.
>>
B.
<<
C.
+
D.
=
Show Answer
Scratch Pad
Discuss
Correct Answer:
<<
4. Which of the following statement is correct?
Options
A. Class is an instance of object.
B. Object is an instance of a class.
C. Class is an instance of data type.
D. Object is an instance of data type.
Show Answer
Scratch Pad
Discuss
Correct Answer: Object is an instance of a class.
5. Which of the following type of class allows only one object of it to be created?
Options
A. Virtual class
B. Abstract class
C. Singleton class
D. Friend class
Show Answer
Scratch Pad
Discuss
Correct Answer: Singleton class
6. Which of the following concept of oops allows compiler to insert arguments in a function call if it is not specified?
Options
A. Call by value
B. Call by reference
C. Default arguments
D. Call by pointer
Show Answer
Scratch Pad
Discuss
Correct Answer: Default arguments
7. Which of the following is not the member of class?
Options
A. Static function
B. Friend function
C. Const function
D. Virtual function
Show Answer
Scratch Pad
Discuss
Correct Answer: Friend function
8. Which of the following is an abstract data type?
Options
A. int
B. double
C. string
D. Class
Show Answer
Scratch Pad
Discuss
Correct Answer: Class
9. Which of the following correctly describes overloading of functions?
Options
A. Virtual polymorphism
B. Transient polymorphism
C. Ad-hoc polymorphism
D. Pseudo polymorphism
Show Answer
Scratch Pad
Discuss
Correct Answer: Ad-hoc polymorphism
10. Which one of the following is the correct way to declare a pure virtual function?
Options
A.
virtual void Display(void){0};
B.
virtual void Display = 0;
C.
virtual void Display(void) = 0;
D.
void Display(void) = 0;
Show Answer
Scratch Pad
Discuss
Correct Answer:
virtual void Display(void) = 0;
First
2
3
4
5
6
More in C++ Programming:
Constructors and Destructors
Functions
Objects and Classes
OOPS Concepts
References