What is strong-typing versus weak-typing? Which is
preferred? Why?
Answer Posted / vetri
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 run-time. Which is preferred depends
on what you want. For scripts & quick stuff you’ll usually
want weak typing, because you want to write as much less
(is this a correct way to use Ensligh?) code as possible.
In big programs, strong typing can reduce errors at compile
time.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Is react a template engine?
How do you open a page in a new window?
What is the difference between login controls and forms authentication?
What does mvc represent in asp.net? : asp.net mvc
What is the default timeout for a cookie?
How can I open ashx file in mobile?
Can we handle the error and redirect to some pages using web.config?
What is an axd file?
What is query string?
Which object wraps the state or data of a user?
What is the differences between a primary key and a unique key in sql server?
What is the difference between Classic ASP and ASP.Net?
What are the parts of an http response?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?