Multiple choice technology programming languages

SEARCH can be applied to a table which does not have an INDEX defined.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SEARCH operations do not require an index - a database can perform a full table scan to find matching rows. However, searches are much faster and more efficient with an index. Without an index, the database must examine every row in the table, which is slow for large tables but still functional.