Select the accurate description of Dynamic typing.
- A. An informal, high-level description of a program's logic that is not tied to any specific programming language syntax.
- B. A loop that exists inside the body of another loop.
- C. A named value in a program that cannot be changed once it has been assigned.
- D. A type system where variable types are checked at runtime rather than at compile time. ✓
Correct answer
D. A type system where variable types are checked at runtime rather than at compile time.
Explanation
Dynamic typing refers to a type system where variable types are checked at runtime rather than at compile time.