Statistically-Typed-Vs-Dynamically-Typed-Languages

Statistically Typed Vs Dynamically Typed Languages

Statistically Typed language is a language where the type of a variable is known at compile time

Examples

  • C
  • C++
  • C#
  • Go

Dynamically Typed Languages are languages where the variable type is associated with runtime values and not named. In other words, you do not need to add the type each time.

Examples

  • Python
  • PHP
  • Ruby
  • JavaScript

#ProgrammingLanguageFacts