Is Objective C dynamically typed?
The question is about Objective C
Answer:
Objective C supports dynamic typing through its id type, allowing objects of any class to be assigned to a variable. However, it is primarily a statically typed language where the types of variables are declared at compile-time.