GIGO (Garbage In, Garbage Out)

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.

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.

Example:

Simply put: Wrong input = Wrong output.