To answer this question, we need to understand what happens to a nonunique index when a table is dropped.
Option A) No effect - This option is incorrect because dropping a table does have an effect on the index.
Option B) The index will be rendered invalid - This option is incorrect. When a table is dropped, the index is not rendered invalid. It is either dropped or remains intact.
Option C) The index will be dropped - This option is correct. When a table is dropped, all associated indexes are also dropped. This includes nonunique indexes created for the table.
Option D) The index will contain NULL values - This option is incorrect. Dropping a table does not affect the existing values in the index. Instead, the index itself is either dropped or remains intact.
The correct answer is C) The index will be dropped. This option is correct because when a table is dropped, all associated indexes, including nonunique indexes, are also dropped.