In Python, a variable may be assigned a value of one
type, and then later assigned a value of a different
type. This concept is known as
a, mutability b. static typing c. dynamic typing d.
immutability
Answers
Answered by
8
Answer:
There are two main differences between dynamic typing and static typing that you should be aware of when writing transformation scripts. First, dynamically-typed languages perform type checking at runtime, while statically typed languages perform type checking at compile time.
Explanation:
Answered by
2
Answer:
option-c
Explanation:
dynamic typing
In Dynamic Typing, type checking is performed at runtime. For example, Python is a dynamically typed language. It means that the type of a variable is allowed to change over its lifetime. Other dynamically typed languages are -Perl, Ruby, PHP, Javascript etc.
FINAL ANSWER- option-c
#SPJ2
Similar questions