Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 484 Bytes

File metadata and controls

12 lines (7 loc) · 484 Bytes

Notes

Static Binding & Dynamic Binding

Static Binding (def data types to variable)

Static binding is nothing but to define a variable in others languages like c++ and java needs to define the type of variable for.ex:- int a = 5 is a static binding .

Dynamic Binding (not def data types)

Dynamic binding is used in python while we can directly define the variable a = 5 or whatever we like python will automatically detect what type is it thats an Dynamic binding.