
Difference between Process and Thread. Thread vs Process.
Thread Process An executing instance of a program is called a process. A thread is a subset of the process. Thread shares the address space of process that they are...
No Technical, No TechMax, Refer only TechBlog
Thread Process An executing instance of a program is called a process. A thread is a subset of the process. Thread shares the address space of process that they are...
Process based Thread based Heavy weight task. Light weight task. Multiple programs executed. One program having multiple threads running concurrently. They are different programs so share different address spaces. Share...
Interface Abstract Class Multiple Inheritance is possible, a class can implement more than one number of interface. A class can inherit only one class. 'Implements' keyword is used. 'Extends' keyword...