C++ Programming - OOPS Concepts - Discussion

Discussion Forum : OOPS Concepts - General Questions (Q.No. 23)
23.
Which of the following concepts means waiting until runtime to determine which function to call?
Data hiding
Dynamic casting
Dynamic binding
Dynamic loading
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
16 comments Page 1 of 2.

Rubini said:   9 years ago
Dynamic casting is safely discovering the type of an object instance at runtime.

This is achieved by the compiler generating reference tables, which can be potentially rather large. For this reason, it is often disabled during compilation if the programmer knows that they do not use the feature.
(1)

Himangi said:   9 years ago
In data hiding we use modifiers like private, public and protected to hide the java variable and methods visibility.

When we go with the abstraction by bean of abstract classes and method we define a behavior and method. That is like skeleton for any class that would be extending this class.

Krishna said:   9 years ago
Dynamic loading is a mechanism by which a computer program can, at run time, load a library into memory, retrieve the addresses of functions and variables contained in the library, execute those functions or access those variables, and unload the library from memory.
(1)

PVN B091086 said:   1 decade ago
Dynamic cast:

Dynamic casts can be used to safely cast a superclass reference into a reference to a subclass in a class hierarchy.

Dynamic binding:

Determining at run time what method to invoke.

Data hiding:

Expose only necessary information to the client.

Tanu said:   1 decade ago
Dynamic cast is used to convert pointers and references at run-time, generally for the purpose of casting a pointer or reference up or down an inheritance chain (inheritance hierarchy).

Benazir said:   1 decade ago
Dynamic binding => Determining at run time what method to invoke

Data hiding => Expose only necessary information to the client

Priyanka said:   1 decade ago
Dynamic Binding: The decision is made at run-time based upon the type of the actual object.

Varsha said:   1 decade ago
What is Data hiding, Dynamic casting, Dynamic binding, Dynamic loading ?

Bhargavi said:   1 decade ago
Dynamic means runtime then only it decides which method will be invoke.

Atif parkar said:   1 decade ago
What is Data hiding, Dynamic casting Dynamic binding Dynamic loading?


Post your comments here:

Your comments will be displayed after verification.