Here are common types of bugs found in most projects:
1. ✅ Functional Bugs
The feature doesn’t work as expected.
Example: Clicking “Submit” does nothing.
2. 🔐 Security Bugs
Sensitive data is exposed or access is not restricted.
Example: A user can access another user’s account details.
3. 🖥 UI/UX Bugs
Design, alignment, or layout issues.
Example: Button overlaps text on small screens.
4. ⏱ Performance Bugs
Slow loading or system hangs.
Example: Page takes 10+ seconds to load.
5. 📤 Integration Bugs
Modules don’t interact properly.
Example: Data from the form isn’t saved in the database.
6. 🔁 Compatibility Bugs
The app doesn’t work on certain devices/browsers.
Example: Works in Chrome but crashes in Safari.
7. 🧮 Calculation/Logic Bugs
Wrong results or business logic failure.
Example: Discount is calculated incorrectly.
🎯 In simple words:
We usually find bugs related to broken functions, design issues, wrong data, or performance.