The difference between kernel threads and user threads

kernelmultithreadingoperating system

What is the difference between kernel threads and user threads? Is it that kernel thread are scheduled and executed in kernel mode? What are techniques used for creating kernel threads?

Is it that user thread is scheduled, executed in user mode? Is it that Kernel does not participate in executing/scheduling user threads? When interrupts occur in executing user thread then who handles it?

Whenever, thread is created a TCB is created for each. now in case of user level threads
Is it that this TCB is created in user's address space ?

In case of switching between two user level threads who handles the context switching ?

There is a concept of multithreading models :

  1. Many to one
  2. One to one
  3. Many to Many.

What are these models? How are these models practically used?

Have read few articles on this topic but still confused
Wants to clear the concept ..

Thanks in advance,
Tazim