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
‣
OOPS Concepts
Comments
Question
Which of the following concepts means determining at runtime what method to invoke?
Options
A. Data hiding
B. Dynamic Typing
C. Dynamic binding
D. Dynamic loading
Correct Answer
Dynamic binding
OOPS Concepts problems
Search Results
1. Which of the following is correct about function overloading?
Options
A. The types of arguments are different.
B. The order of argument is different.
C. The number of argument is same.
D. Both A and B.
Show Answer
Scratch Pad
Discuss
Correct Answer: Both A and B.
2. Which of the following statement is correct?
Options
A. C++ allows static type checking.
B. C++ allows dynamic type checking.
C. C++ allows static member function be of type const.
D. Both A and B.
Show Answer
Scratch Pad
Discuss
Correct Answer: Both A and B.
3. Which of the following approach is adapted by C++?
Options
A. Top-down
B. Bottom-up
C. Right-left
D. Left-right
Show Answer
Scratch Pad
Discuss
Correct Answer: Bottom-up
4. How many types of polymorphisms are supported by C++?
Options
A. 1
B. 2
C. 3
D. 4
Show Answer
Scratch Pad
Discuss
Correct Answer: 2
Explanation:
The two main types of polymorphism are run-time (implemented as inheritance and virtual functions), and compile-time (implemented as templates).
5. Which of the following are available only in the class hierarchy chain?
Options
A. Public data members
B. Private data members
C. Protected data members
D. Member functions
Show Answer
Scratch Pad
Discuss
Correct Answer: Protected data members
6. Which of the following cannot be used with the keyword
virtual
?
Options
A. class
B. member functions
C. constructor
D. destructor
Show Answer
Scratch Pad
Discuss
Correct Answer: constructor
7. Which of the following operators cannot be overloaded?
Options
A.
[]
B.
->
C.
?:
D.
*
Show Answer
Scratch Pad
Discuss
Correct Answer:
?:
Comments
There are no comments.
Enter a new Comment
Save
More in C++ Programming:
Constructors and Destructors
Functions
Objects and Classes
OOPS Concepts
References