C++ Programming - OOPS Concepts - Discussion

Discussion Forum : OOPS Concepts - General Questions (Q.No. 5)
5.
Which of the following concepts means determining at runtime what method to invoke?
Data hiding
Dynamic Typing
Dynamic binding
Dynamic loading
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
37 comments Page 2 of 4.

Anita said:   1 decade ago
Dynamic binding is correct answer because in run time only we are binding the objects to call member functions from the class for invoking the functions from class this mechanism is used.

Aayushi said:   1 decade ago
What is dynamic binding and dynamic loading?

Kannan said:   1 decade ago
Late binding is Run Time Binding or Dynamic Binding.

Early binding is Compile Time Binding or Static Binding.

These are different terms meaning same thing.

Bhavik said:   1 decade ago
Can you please tell me late binding and early binding?

Shaikh Moin Rukmoddin said:   1 decade ago
In C++ you can have an array of base classes but you can call different functions of the derived class by assigning the derived class objects addresses by using virtual functions - this is dynamic binding. If the methods are virtual then this is dynamic binding.

Lillfrancis said:   1 decade ago
Can you explain the concept of difference in dataloading & databinding.

Revathi said:   1 decade ago
Discuss about dynamic typing and dynamic loading?

Asha said:   1 decade ago
What is dynamic typing?

Alok singh chauhan said:   1 decade ago
Well if we talk about run time(dynamic) binding and static binding. Then,

Run time binding is one where function is select at running the program.
Eg - virtual functions.

Static binding is one where the object is bound to function call.
Eg - function overloading and operator overloading.

Rohit said:   1 decade ago
Why not the dynamic typing is correct ? If we see the example of function overloading then ther is dynamic linking on the basis of data types ? So dynamic lynking may be correct. Please answer.


Post your comments here:

Your comments will be displayed after verification.