Answer:
SQL Query
//////////////////////////////////////////////////////////////////////////////////////////////////
select student_name from Student
INNER JOIN Class ON Student.id = Class.student_id
LEFT JOIN Instructor ON Class.instructor_id = Instructor.id
WHERE Instructor.school <> 'Computer Science'
Step-by-step explanation:
First thing is to select the student_name from Student table.
Next we need to connect with the Class table to get all Students currently taking classes.
Next we need to connect the Class table with the Instructor table, to get all of the Instructors currently teaching class(s).
Finally, we place the Where condition for the acquired instructors to not be from the Computer Science department.