Differentiate between Single Thread Model and Multi Thread Model?
Answers
Answered by
6
The main difference between single thread and multi thread in Java is that single thread executes tasks of a process while in multi-thread, multiple threads execute the tasks of a process. A process is a program in execution. When there is one thread in a process, it is called a single threaded application.
Similar questions