Skip to content

Commit f5b13a3

Browse files
Praizeebabblebey
andauthored
Dictionary (New Word): GIGO (Garbage In, Garbage Out) (#118)
# Word #### GIGO (Garbage In, Garbage Out) # Meaning/Definition A principle in computer science and data processing that emphasizes the importance of input quality: if the input data is flawed or incorrect, the output will also be unreliable or meaningless. --------- Co-authored-by: Olabode Lawal-Shittabey <babblebey@gmail.com>
1 parent 6d18f0d commit f5b13a3

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

src/content/dictionary/gigo.mdx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: ../../layouts/word.astro
3+
title: "GIGO (Garbage In, Garbage Out)"
4+
---
5+
GIGO (Garbage In, Garbage Out) is a computer science principle that means if you put bad (incorrect, incomplete, or nonsensical) input into a system, you will get bad output from it.
6+
7+
A computer will process whatever data it’s given, whether correct or wrong. It doesn’t “know” if the input makes sense—it just follows the rules or program instructions. So, if the input is garbage, the result will also be garbage.
8+
9+
Example:
10+
11+
- If you give a calculator `2 + apple`, it cannot produce a meaningful result.
12+
- If you enter wrong data into a payroll system (like typing 5000 hours worked instead of 50), the output (the salary calculation) will also be wrong.
13+
14+
Simply put: **Wrong input** = **Wrong output**.

0 commit comments

Comments
 (0)