Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (6.5k points)
How can binding be dynamic?

1 Answer

0 votes
by (11.3k points)

Binding implies the attachment of a procedural call from the code that is supposed to be executed when the call is made. Dynamic Binding has another term which is called, 'Late Binding' and this means that the code which is linked to the call is not known until the moment that the call is made i.e. upon runtime. This enhances the properties of JAVA such as inheritance and polymorphism. 

If you want to understand the difference and real hands-on to understand when it's imperative to use static and when there's a need for dynamic binding, you should learn java from the ground up implementing these concepts in very basic problem statements. 

Related questions

0 votes
1 answer
asked Feb 18, 2021 in Java by Jake (7k points)
0 votes
1 answer
0 votes
1 answer

Browse Categories

...