Showing posts with label Object Oriented Programming Methodolgy (OOPM). Show all posts
Showing posts with label Object Oriented Programming Methodolgy (OOPM). Show all posts

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...

Difference between Process based vs Thread based

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...

Difference between Interface vs Abstract Class

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...