About 544,000 results
Open links in new tab
  1. Difference between static and dynamic programming languages

    What is the difference between static and dynamic programming languages? I know that it is all about type systems, but I’m looking for more clear clarifications.

  2. What is the difference between statically typed and dynamically typed ...

    Oct 5, 2009 · A programming language is said to be dynamically typed, or just 'dynamic', when the majority of its type checking is performed at run-time as opposed to at compile-time.

  3. What qualifies a programming language as dynamic?

    Feb 6, 2011 · What sort of problems should I use a dynamic programming language to solve? What is the main difference between static programming languages and dynamic programming languages?

  4. What is the difference between dynamic languages and functional ...

    Nov 4, 2010 · Dynamic typing, a type system, is orthogonal to 'functional', a programming paradigm. Dynamic 'languages' are actually dynamically typed. This means that you don't have compile-time …

  5. What is a dynamic language, and why doesn't C# qualify?

    Dynamic programming language is a term used broadly in computer science to describe a class of high-level programming languages that execute at runtime many common behaviors that other languages …

  6. What is the difference between a strongly typed language and a ...

    Apr 22, 2010 · The reason for this is that variables in a statically typed language have a type that must be declared and can be checked at compile time. A strongly-typed language has values that have a …

  7. Dynamic type languages versus static type languages

    You have a statically typed language with one type, or a dynamic language. In practise this all shows, statically typed languages are generally used in the context of writing commercial software, whereas …

  8. What does it mean that JavaScript is "dynamic"?

    Sep 9, 2015 · Wikipedia talks about how dynamic programming languages execute certain programming behaviors at runtime (as opposed to compile time for static languages), but their explanation is vague …

  9. Dynamic and static Scoping program differences - Stack Overflow

    Actually, there is a programming language that let you choose - Clojure! The default scope is static, but you can declare dynamically scoped "variables" (not really variables - Clojure is a functional …

  10. type systems - Why Is Dynamic Typing So Often Associated with ...

    However, almost every interpreted language I encounter uses dynamic typing (PHP, Perl, Python, etc.). I know why compiled languages use static typing (most of the time), but I can't figure out the aversion …