What is strong-typing versus weak-typing? Which is
preferred? Why?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / kirti
Strong typing implies that the types of variables involved in operations are associated to the variable, checked at compile-time, and require explicit conversion; weak typing implies that they are associated to the value, checked at run-time, and are implicitly converted as required. (Which is preferred is a disputable point, but I personally prefer strong typing because I like my errors to be found as soon as possible.)
Is This Answer Correct ? | 0 Yes | 0 No |
What is difference Between Authentication and authorization?
What is %20 in a url?
Authentication and Authorization
What are Caching techniques in .NET
Who can consume WebAPI?
Descrie about response.buffer and repsonse.flush ?
What is the difference between globalization and localization?
1.What r collections? 2.What is .pdb file? 3.Is it possible to provide access to users in master page? 4.What is dirty n Phantom Read(SQL)? 5.What r different isolation levels(SQL)? 6.How to set authentication mode in web.config file?
What are the Types of chaching. How to implement caching
How can I have a particular web page in an asp.net application which displays its own error page?
Why do we need master page in asp.net?
Differentiate between authentication and authorization.