Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Software Engineering and Project Management - Module 3, Study notes of Software Engineering

Software Engineering and Project Management - Module 3

Typology: Study notes

2024/2025

Available from 07/06/2025

varun-31
varun-31 🇮🇳

44 documents

1 / 37

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25

Partial preview of the text

Download Software Engineering and Project Management - Module 3 and more Study notes Software Engineering in PDF only on Docsity!

1. Interface - Are inputs and outputs correct? - Example: If a function takes 2 numbers, does it return the correct result? 2. Local Data Structures - Are internal variables, arrays, or lists used correctly? - Example: Are variables storing the right values? 3. Boundary Conditions - How does the module behave at the edges? - Example: If the function takes numbers from 1 to 100, what happens at 1 and 100? 4. Independent Paths - Does each logical path in the code work? - Example: If your code has if...else conditions, you should test both paths. 5. Error Handling Paths - Does the module respond correctly to invalid or unexpected input? - Example: What if someone inputs text instead of a number?