What are the different types of Bugs we normally see in any of the Project? Include the severity as well.
1. User Interface Defects -------------------------------- Low 2. Boundary Related Defects ------------------------------- Medium 3. Error Handling Defects --------------------------------- Medium 4. Calculation Defects ------------------------------------ High 5. Improper Service Levels (Control flow defects) --------- High 6. Interpreting Data Defects ------------------------------ High 7. Race Conditions (Compatibility and Intersystem defects)- High 8. Load Conditions (Memory Leakages under load) ----------- High 9. Hardware Failures:-------------------------------------- High
RE: What are the different types of Bugs we normally see in any of the Project? Include the severity as ...
The Life Cycle of a bug in general context is:
Bugs are usually logged by the development team (While Unit Testing) and also by testers (While sytem or other type of testing).
So let me explain in terms of a tester's perspective:
A tester finds a new defect/bug so using a defect tracking tool logs it.
1. Its status is 'NEW' and assigns to the respective dev team (Team lead or Manager). 2. The team lead assign's it to the team member so the status is 'ASSIGNED TO' 3. The developer works on the bug fixes it and re-assings to the tester for testing. Now the status is 'RE-ASSIGNED' 4. The tester check if the defect is fixed if its fixed he changes the status to 'VERIFIED' 5. If the tester has the autority (depends on the company) he can after verifying change the status to 'FIXED'. If not the test lead can verify it and change the status to 'fixed'.
6. If the defect is not fixed he re-assign's the defect back to the dev team for re-fixing.
RE: What are the different types of Bugs we normall...
three types of bugs they are 1) crictal bugs 2) major bug 3) minor bugcritical bug - It affect the next module.Major Bug- It affects within the module.Minor Bug- Only spelling mistakes.