Multiple choice technology databases In which scenario would an index be most useful? The indexed column is declared as NOT NULL. The indexed columns are used in the FROM clause. The indexed columns are part of an expression. The indexed column contains a wide range of values. Reveal answer Fill a bubble to check yourself D Correct answer Explanation Indexes are most effective on columns with high cardinality (wide range of unique values). Low-cardinality columns (like boolean flags or status enums) benefit less from indexing because the index doesn't significantly reduce the search space.