Question: Which statement could you use to select a random student from this table?

  1. `SELECT TOP(1) first_name, last_name FROM Students ORDER BY NEWID();`
  2. `SELECT TOP(1) RAND(first_name, last_name) FROM Student;`
  3. `SELECT TOP(1) first_name, last_name FROM Student;`
  4. `SELECT TOP(1) first_name, last_name FROM RAND(Student);`

Answer: The correct answer of the above question is Option A:`SELECT TOP(1) first_name, last_name FROM Students ORDER BY NEWID();`