Skip to main content

Classification of Operating System

 Classification of operating systems

The operating systems may be classified into different types depending upon the nature of interaction between the user and his/her program. The various types of operating system are :

1.     single user operating system  

2.      Multi user operating system 

3.       Batch processing operating system

4.      Multi programming operating system 

5.     Multi tasking operating system 

6.       Multiprocessing operating system

7.       Time sharing operating system

8.     Real time system  

 Distributed system

Multi threading operating system



 

 

 

Single user operating system

·                     In single user operating system, a single user can access the computer at a particular time.

·                     The computer, that are based on the operating system have only single processor and execute only a single program at all the time

 

·                     Single user is of two type :

1.       single user, single-tasking operating system.

2.       Single user, multi-tasking operating system

 

·         Single user, single tasking operating system: the single user, single tasking operating system allows a single user to execute one program at a particular time. for example MS-dos and palm OS for palm handheld computer are single user single tasking OS

 

·         Single user, multi tasking operating system: the single user, multitasking operating system allows a single user to execute multi programs at a same time. For example, a user can perform different tasks such as making calculation in excel sheet, printing a word document and download a file from the internet at the same time .

 

Comments

Popular posts from this blog

Monolithic Architecture

  Monolithic Architecture Monolith means composed all in one piece. The  Monolithic  application describes a single-tiered  software  application in which different components combined into a single program from a single platform. Components can be: Authorization — responsible for authorizing a user Presentation — responsible for handling HTTP requests and responding with either HTML or JSON/XML (for web services APIs). Business logic — the application’s business logic. Database layer — data access objects responsible for accessing the database. Application integration — integration with other services (e.g. via messaging or REST API). Or integration with any other Data sources. Notification module — responsible for sending email notifications whenever needed. Example for Monolithic Approach Consider an example of Ecommerce application, that authorizes customer, takes an order, check products inventory, authorize payment and ships ordered products. This applicat...