Multiple choice technology databases

For creating a table named T1 do we need to check whether that table exist or not ?

  1. True

  2. False

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

You don't necessarily need to check if a table exists before creating it. You can use CREATE TABLE IF NOT EXISTS syntax, or let the database return an error if it exists. While checking is good practice in some contexts, it's not mandatory. The statement incorrectly presents it as a requirement.