Multiple choice technology databases What is the result if two NULL values are compared to each other? True False NULL Undefined Reveal answer Fill a bubble to check yourself C Correct answer Explanation NULL represents an unknown or missing value. Any comparison involving NULL (including NULL = NULL) returns NULL, not TRUE or FALSE. This is three-valued logic. The IS NULL or IS NOT NULL operators must be used to test for NULL values.