What is difference between Strong Typing and Weak Typing ? Which one is prepared ?Why?
- Strong type is checking the types of variables as soon as possible, usually at compile Time.
- While weak typing is delaying checking the types of the system as late as possible usually to runtime.
- Which is preferred depends on what you want for scripts and quick stuff you. Usually want weak typing.
- Because you want to write as much as less code as possible. In big programs , strong typing can reduce errors at compile Time.
No comments:
Post a Comment