Statically typed language and Dynamically typed language. By Ayush garg T here are lots of programming languages in world. Every language follow some paradigm (A guild line follow to make program). For example c follow procedure oriented paradigm, C++ and java follow object oriented paradigm. Similarly statically type and dynamically typed are another paradigm of programming language. Important note – sometime programmer get confuse between static or dynamic typed language and static or dynamic memory allocation. Both are totally different concept. Static or dynamic typed language is the paradigm of programming language and static or dynamic memory allocation is all the allocation of the memory of the variable. To explain this concept I am going to use the python, C, C++, and Java language. If you don’t know these or anyone of these languages doesn’t worry consider the program as a pseudo code. So let’s begin. Statically typed language- ...