Question: To select a random student from the table, which statement could you use?

  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();`