10 Reasons why your PC crash and how to avoid them.

Most of us has seen this error on your screen

Fatal error: the system has become unstable or is busy,” it says. “Enter to return to Windows or press Control-Alt-Delete to restart your computer. If you do this you will lose any unsaved information in all open applications.”

You have just been struck by the Blue Screen of Death. Anyone who uses Windows will be familiar with this. What can you do? More importantly, how can you prevent it happening?
Continue reading

What is difference between Software Quality Assurance (QA) and Software Quality Control (QC)?

In Software Applications and Products defects (bugs) can be injected from different sources (causes) and during different phases of Software Development Life Cycle (SDLC). These defects sources can be derived from Software Requirements and Software Design rather than the Coding. Commonly Coding is known as main source of Defects in Software Applications and Products.

Continue reading

What is Software Quality Assurance (QA)?

Software Quality Assurance (QA) means the Verification activities performed to control the defects in Softwares. Software QA involvement starts early in the Software Development Life Cycle (SDLC), right from the Project Planning and Requirement Analysis Phase. Software QA works on the idea of prevention of defects activities.

Continue reading

What is a Bug?

A bug is a defect in a Software Application. We can say that a bug is a condition when software does not perform what it should perform under normal circumstances. For example if we expect that a calculator application should add 2+2 as 4 but if gives some other results we say that the Calculator Application is having a bug.

A bug is also known as defect, problem.

What is Value type and Reference type in .Net?

Answer:

Value Type : A variable of a value type always contains a value of that type. The assignment to a variable of a value type creates a copy of the assigned value, while the assignment to a variable of a reference type creates a copy of the reference but not of the referenced object.

Continue reading