Prev Next

Java / Variable

Difference between static type and dynamic type programming languages.

A language is statically typed if the type of a variable is known at compile time. For example in Java, C and C++, programmer must specify what type each variable is.

A language is dynamically typed if the type is associated with run-time values. Example programming languages are perl, python and ruby.

More Related questions...

Show more question and Answers...


Comments & Discussions