What is Statically-Typed Language and What is Dynamically-Typed Language?
Answer Posted / Pooja Tripathi
A statically-typed language requires variables to be declared with their data type before they are used, ensuring type safety at compile time. Examples include C++, Java, and Scala. A dynamically-typed language allows variables to be assigned values of any type during runtime, which can lead to dynamic behavior but may also make it harder to catch errors early. Examples include JavaScript, Python, and Ruby.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers