Useful tips for everyday
What is modular testing? One effective way to create a scalable test suite is to adopt a modular testing system. Modular tests are tests designed…
Which is better webform or MVC and why explain? Light Weight: MVC pages are lighter as compared to webforms as they don’t carry bulky viewstate…
How do you define a state? According to one definition, a state is a community formed by people and exercising permanent power within a specified…
What tense should commit messages be written in? History (i.e. commit messages) is written as something that was done in the past (e.g. the problem…
When should I change my build number? Convention is that the build number always increments, also after a version number change. For every new build…
Which devices use ROM? Read-Only Memory (ROM), is a type of electronic storage that comes built in to a device during manufacturing. You’ll find ROM…
Where do I put Typedefs? 3 Answers First way is to typedef at the place-of-first-declaration. Second way is to typedef at each place-of-use, and make…
What is edge case and corner case? An edge case is an issue that occurs at an extreme (maximum or minimum) operating parameter. A corner…
Why you should never use select *? When we write SELECT * FROM table , the database engine has to go into the system tables…
What are the advantages of loosely typed? The advantage claimed of weak typing is that it requires less effort on the part of the programmer…