Question:Write the differences between statically and dynamically types languages.
Answer In a statically typed language, such as C#, or C, the compiler checks we are using types correctly at compile time. Dynamic languages, such as javaScript, Python, Lisp, and Ruby, do not perform type checks on code until runtime.
+ Report
Write the differences between statically and dynamically types languages.