diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2025-12-03 17:35:33 -0700 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2025-12-03 17:35:33 -0700 |
| commit | db4ccdbf5305dae374882e5416db88be91ec132b (patch) | |
| tree | 20490ce7ebc89166ee3ee1ea4d92f7c27ab3d8de /tutorials | |
| parent | 5b9fd00087ca8594ddb716134cd210a9f9ae5876 (diff) | |
Added Verification and validation tutorial file
Diffstat (limited to 'tutorials')
| -rw-r--r-- | tutorials/module_2/verification_and_validation.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tutorials/module_2/verification_and_validation.md b/tutorials/module_2/verification_and_validation.md new file mode 100644 index 0000000..84064d3 --- /dev/null +++ b/tutorials/module_2/verification_and_validation.md @@ -0,0 +1,17 @@ +# Writing Robust Code + +This section includes tips and good practices you should exercise when writing code. It is acome up by Software Engineers at NASA. + +1. Simple Control Flow +2. Limit all loops +3. Limit function size -> function should only perform 1 action -> max 60 lines or fit on a printer paper +4. Practice data hiding -> hide internal object details -> restrict the data access to class members. It maintains data integrity. +5. Check return values from your functions + + +# Verification and Validation +Verification and validation is a process + +**Verification:** + +**Validation:**
\ No newline at end of file |
