The correct order for Amit to execute the SQL commands is (B), (A), (D), (C).
Additional Context:
-- Correct execution sequence: USE DB; -- Select database CREATE TABLE Student (...); -- Create table INSERT INTO Student (...) -- Insert data VALUES (...); SELECT * FROM Student; -- View data
Correct Answer: (3) (B), (A), (D), (C)