Sometimes, students confuse interpreted and interactive, i.e. they think that whenever there is an interactive loop such as the Lisp read-eval-print loop, there must also be an interpreter. That is false. The eval part can very well be implemented with a compiler.
Sometimes, students think that even though it is possible to implement Common Lisp (or Scheme) with a compiler, it is usually done with an interpreter, so that most implementations are slow. This might be the case for Scheme systems written by students, but is never the case for professional systems. Almost every Common Lisp system in existence uses a compiler.