Unit-1Overview of Operating System

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 23

Chapter no 1: Overview of Operating System

What is an Operating System?

• An operating System (OS) is an intermediary between users and computer hardware.


• It provides users an environment in which a user can execute programs conveniently and
efficiently.
• In technical terms, it is software which manages hardware.
• An operating System controls the allocation of resources and services such as memory,
processors, devices and information.
• Every general-purpose computer must have an operating system to run other programs
and applications.

Definition:

An operating system is a program that acts as an interface between the user and the computer
hardware and controls the execution of all kinds of programs.

Following are some of important functions of an operating System.

➢ Process Management – Managing the programs that are running.


➢ Memory Management – Managing and rationing the memory between processes
and data.
➢ Storage Management – Managing the permanent Storage of data on disks or
other media
➢ I/O Management – Managing the input and output

1
➢ Device / Resource Management – Managing devices and resources and allowing
the users to share the resources

➢ Security and Protection – Securing the system against possible unauthorized


access to data or any other entity. Protecting the parts of the system against
damage.
➢ Booting the System and getting it ready to work.
➢ Data communications – Providing interface to connect to other computers or
allowing others to connect

Operations of Operating system

➢ Program Management:
• The term process refers here to program code that has been loaded into a
computer's memory so that it can be executed by the central processing
unit (CPU).
• In a multiprogramming system, there will be a number of competing processes.
The operating system must ensure that each process gets a fair share of the CPU's
time.
• Before a program can be executed, at least part of the program's executable code
must be loaded into memory as a process. The operating system must then
determine when the CPU can be made available to the process, and for how long.
Once a process controls the CPU, its instructions will be executed until its allotted
time expires, or until it terminates, or until it requests an input or output operation.
• In the latter case, the operating system will service the I/O request and suspend the
execution of the process until the I/O request has been satisfied, and the CPU is
once more available (on suspension of one process, the CPU is made available to
the next waiting process).

➢ Following are the major activities of an operating system with respect to program
management −

• Loads a program into memory.


• Executes the program.
• Handles program's execution.
• Provides a mechanism for process synchronization.
• Provides a mechanism for process communication.
• Provides a mechanism for deadlock handling.

2
➢ Resource Management
• Operating system is a resource allocator.
• Resource management is the dynamic allocation and de-allocation by an operating
system of processor cores, memory pages, and various types of bandwidth to
processes that compete for those resources.

➢ Security and Protection


❖ Security
• Operating system security (OS security) is the process of ensuring OS integrity,
confidentiality and availability.
• OS security refers to specified steps or measures used to protect the OS from
threats, viruses, worms, malware or remote hacker intrusions. OS security
encompasses all preventive-control techniques, which safeguard any computer
assets capable of being stolen, edited or deleted if OS security is compromised.
• If a computer program is run by an unauthorized user, then he/she may cause
severe damage to computer or data stored in it. So a computer system must be
protected against unauthorized access, malicious access to system memory,
viruses, worms etc.

❖ Protection
• The processes in an operating system must be protected from one another's
activities.
• To provide such protection, we can use various mechanisms to ensure that only
processes that have gained proper authorization from the operating system can
operate on the files, memory segments, CPU, and other resources of a system.
• Protection refers to a mechanism for controlling the access of programs, processes,
or users to the resources defined by a computer system.

Views of operating system

➢ User View

The user view depends on the system interface that is used by the users. The
different types of user view experiences can be explained as follows:

3
• If the user is using a personal computer, the operating system is largely designed to
make the interaction easy. Some attention is also paid to the performance of the
system, but there is no need for the operating system to worry about resource
utilization.
• If the user is using a system connected to a mainframe or a minicomputer, the
operating system is largely concerned with resource utilization. This is because
there may be multiple terminals connected to the mainframe and the operating
system makes sure that all the resources such as CPU,memory, I/O devices etc. are
divided uniformly between them.
• If the user is sitting on a workstation connected to other workstations through
networks, then the operating system needs to focus on both individual usage of
resources and sharing though the network. This happens because the workstation
exclusively uses its own resources but it also needs to share files etc. with other
workstations across the network.
• If the user is using a handheld computer such as a mobile, then the operating system
handles the usability of the device including a few remote operations. The battery
level of the device is also taken into account.

➢ System View:

According to the computer system, the operating system is the bridge between
applications and hardware. It is most intimate with the hardware and is used to
control it as required.

The different types of system view for operating system can be explained as
follows:

• The system views the operating system as a resource allocator. There are many
resources such as CPU time, memory space, file storage space, I/O devices etc. that
are required by processes for execution. It is the duty of the operating system to
allocate these resources to the processes so that the computer system can run as
smoothly as possible.
• The operating system can also work as a control program. It manages all the
processes and I/O devices so that the computer system works smoothly and there
are no errors.
• Operating systems can also be viewed as a way to make using hardware easier.

4
An operating system can also be considered as a program running at all times in the
background of a computer system (known as the kernel) and handling all the
application programs.

Different types of operating system

➢ Batch operating system

• The users of batch operating system do not interact with the computer directly.
• Each user prepares his job on an off-line device like punch cards and submits it to the
computer operator.
• To speed up processing, jobs with similar needs are batched together and run as a group
by the operator.
• Thus, the programmers leave their programs with the operator. The operator then sorts
programs into batches with similar requirements.
• The OS was simple, its major task was to transfer control from one job to the next. The
job was submitted to the computer operator in form of punch cards. At some later time
the output appeared.

Drawbacks:

• Lack of interaction between the user and job.


• CPU is often idle, because the speeds of the mechanical I/O devices are slower than CPU.
• Difficult to provide the desired priority.

➢ Multiprogramming
• Multiprogramming is a technique in which two or more programs reside in
memory at the same time.
• Multiprogramming increases CPU utilization.
• It ensures that the CPU always has one job to execute.

5
• Following figure shows the memory layout for a multiprogramming system:

Operating system does the following activities for multiprogramming:


1. The operating system keeps several jobs in memory at a time
2. The operating system picks and begins to execute one of the jobs in memory.
3. When currently executing job requires an I/O operation, the CPU is switched to the
next job in memory.
4. I/O operation may take a long time to complete. During this time CPU can be utilized
for other job.
5. Multiprogramming operating system monitors the state of all active programs and
resources.
6. It ensures that CPU is never idle unless there is no job.
7. Example of multiprogramming, we open word, excel, access and other applications
together but while we type in word other applications such as excel and access are just
present in main

Advantages
1. High and efficient use of CPU.
1. User feels that many programs are allotted with the CPU.

Disadvantages
1. CPU scheduling is required.
2. To accommodate many programs at a time memory management is required.

➢ Multitasking:
• It is a technique in which multiple jobs are executed by the CPU simultaneously.
• This is done by switching between the jobs.

6
• Switches occur so frequently that the users may interact with each program while it is
running.
• Operating system does the following activities related to multitasking:
• The user gives instructions to the programs and receives an immediate response.
• Operating system handles multiple operations at a time.
• These systems are also called as Time-sharing systems.
• As the system switches CPU rapidly from one user/program to the next, each user is
given the impression that he/she has his/her own CPU, whereas actually one CPU is
being shared among many users.

Advantages
1. Increases the productivity i.e. more jobs are done in less time.
2. Enables to share the data between different applications.
3. Enables to switch between applications instantly.

Disadvantages
1. Complex OS is required.
2. Large main memory is required.

➢ Time-sharing operating systems

• Processor's time which is shared among multiple users simultaneously is termed as


time-sharing.
• In Time-Sharing Systems objective is to minimize response time.
• Multiple jobs are executed by the CPU by switching between them, but the switches
occur so frequently. Thus, the user can receive an immediate response.
• When the user submits the command, the response time is in few seconds at most.

7
• Operating system uses CPU scheduling and multiprogramming to provide each user
with a small portion of a time.

• In above figure the user 5 is active but user 1, user 2, user 3, and user 4 are in waiting
state whereas user 6 is in ready status.
• As soon as the time slice of user 5 is completed, the control moves on to the next
ready user i.e. user 6. In this state user 2, user 3, user 4, and user 5 are in waiting state
and user 1 is in ready state. The process continues in the same way and so on.

Advantages

• Provide advantage of quick response.


• Avoids duplication of software.
• Reduces CPU idle time.

Disadvantages

• Problem of reliability.
• Question of security and integrity of user programs and data.
• Problem of data communication.

➢ Multiprocessor Systems:

• Multiprocessor Operating System refers to the use of two or more central processing
units (CPU) within a single computer system. These multiple CPUs are in a close
communication sharing the computer bus, memory and other peripheral devices. These
systems are referred as tightly coupled systems.

8
Types of Multiprocessor system

➢ Symmetric multiprocessing (SMP)


• In these types of systems, each processor contains a similar copy of the operating system
and they all communicate with each other.
• All the processors are in a peer to peer relationship i.e. no master - slave relationship
exists between them.

➢ Asymmetric multiprocessing
• In asymmetric systems, each processor is given a predefined task. There is a master
processor that gives instruction to all the other processors.
• Asymmetric multiprocessor system contains a master slave relationship.

Advantages
• Increased throughput
• Economical
• Increased reliability
• Graceful degradation

Disadvantages
• Increased Expense
• Complicated Operating System Required
• Large Main Memory Required

➢ Distributed operating System

• Distributed Operating System is a model where distributed applications are running on


multiple computers linked by communications.
• This system looks to its users like an ordinary centralized operating system but runs on
multiple, independent central processing units

9
• Distributed systems use multiple central processors to serve multiple real time application
and multiple users.
• Data processing jobs are distributed among the processors accordingly to which one can
perform each job most efficiently.
• The processors communicate with one another through various communication lines
(such as high-speed buses or telephone lines).
• These are referred as loosely coupled systems or distributed systems.
• Processors in a distributed system may vary in size and function.
• These processors are referred as sites, nodes, and computers and so on.

Advantages

• Resource sharing over n/w.


• Speedup the exchange of data with one another via electronic mail.
• If one site fails in a distributed system, the remaining sites can continue operating.
• Better service to the customers.
• Reduction of the load on the host computer.
• Reduction of delays in data processing.

10
➢ Clustered systems

• The clustered systems are created by two or more individual computer systems
merged together.
• Basically, they have independent computer systems with a common storage and
the systems work together.

• Each node in the clustered systems contains the cluster software. This software
monitors the cluster system and makes sure it is working as required.
• If any one of the nodes in the clustered system fail, then the rest of the nodes take
control of its storage and resources and try to restart.

Types of clustered system:


➢ Asymmetric Clustering System

• In this system, one of the nodes in the clustered system is in hot standby mode and
all the others run the required applications.
• The hot standby node continuously monitors the server and if it fails, the hot
standby node takes its place.

➢ Symmetric Clustering System

• In symmetric clustering system two or more nodes all run applications as well as
monitor each other.

11
Advantages are:

1) High reliability
2) Asymmetric clustering: One server runs the applications while other server is a
standby server.
3) Symmetric clustering: All N number of hosts are running the applications.

➢ Real Time operating System

• Real time system is defined as a data processing system in which the time interval
required to process and respond to inputs is so small that it controls the environment.
• The time taken by the system to respond to an input and display of required updated
information is termed as response time.
• Real-time systems can be used as a control device in a dedicated application.
• Real-time operating system has well-defined, fixed time constraints otherwise system
will fail.
• For example Scientific experiments, medical imaging systems, industrial control systems,
weapon systems, robots, and home-appliance controllers, Air traffic control system etc.

There are two types of real-time operating systems.

➢ Hard real-time systems

• Hard real-time systems guarantee that critical tasks complete on time.


• In hard real-time systems secondary storage is limited or missing with data stored in
ROM.
• In these systems virtual memory is almost never found.
• e.g. Nuclear power plant, Medical imaging system, weapon system, Air traffic control.

➢ Soft real-time systems

• Soft real time systems are less restrictive.


• Critical real-time task gets priority over other tasks and retains the priority until it
completes.
• Soft real-time systems have limited utility than hard real-time systems.
• e.g. multimedia , virtual reality, industrial control robotics, scientific projects.

Mobile operating system


• A mobile operating system (or mobile OS) is an operating system for
phones, tablets, smart watches, or other mobile devices.

12
• Mobile operating systems combine features of a personal computer operating system with
other features useful for mobile or handheld use; usually including, and most of the
following considered essential in modern mobile systems; a wireless inbuilt modem and
SIM tray for telephony and data connection, a touchscreen, cellular, Bluetooth, Wi-Fi
Protected Access, Wi-Fi, Global Positioning System (GPS) mobile navigation, video-
and single-frame picture cameras, speech recognition, voice recorder, music player, near
field communication, and infrared blaster.

➢ Android OS

• Android is a mobile operating system developed by Google. It is based on a modified


version of the Linux kernel and other open source software, and is designed primarily
for touchscreen mobile devices such as Smartphone’s and tablets.
• The android is a powerful operating system and it supports large number of applications
in Smartphone’s. These applications are more comfortable and advanced for the users.
The hardware that supports android software is based on ARM architecture platform.

• The android is an open source operating system means that it’s free and any one can use
it. The android has got millions of apps available that can help you managing your life
one or other way and it is available in low cost in market at that reasons android is very
popular.
• Android operating system is a stack of software components which is roughly divided
into five sections and four main layers as shown below in the architecture diagram.

❖ Linux Kernel:

• At the bottom of the layers is Linux Kernel.


• This provides a level of abstraction between the device hardware and it contains all the
essential hardware drivers like camera, keypad, display etc.
• Also, the kernel handles all the things that Linux is really good at such as networking and
a vast array of device drivers.
13
• It also provides memory management, Security, process management etc.

❖ Libraries:
On top of Linux kernel there is a set of libraries including open-source Web browser
engine WebKit, well known library libc, SQLite database which is a useful repository for
storage and sharing of application data, libraries to play and record audio and video, SSL
libraries responsible for Internet security etc.
❖ Android Runtime:
• This is the third section of the architecture and available on the second layer from the
bottom. This section provides a key component called Dalvik Virtual Machine which is a
kind of Java Virtual Machine specially designed and optimized for Android.
• The Dalvik VM makes use of Linux core features like memory management and multi-
threading, which is intrinsic in the Java language. The Dalvik VM enables every Android
application to run in its own process, with its own instance of the Dalvik virtual machine.
• The Android runtime also provides a set of core libraries which enable Android
application developers to write Android applications using standard Java programming
language.
❖ Application Framework:
The Application Framework layer provides many higher-level services to applications in
the form of Java classes. Application developers are allowed to make use of these
services in their applications.
The Android framework includes the following key services −
• Activity Manager − Controls all aspects of the application lifecycle and activity stack.
• Content Providers − Allows applications to publish and share data with other
applications.
• Resource Manager − Provides access to non-code embedded resources such as strings,
color settings and user interface layouts.
• Notifications Manager − Allows applications to display alerts and notifications to the
user.
• View System − An extensible set of views used to create application user interfaces.

❖ Applications:
• You will find all the Android application at the top layer. You will write your application
to be installed on this layer only. Examples of such applications are Contacts Books,
Browser, and Games etc.
14
➢ IOS

• First released in 2007, iOS is written in multiple languages and only runs on the
company’s products such as iPhones, iPads, and iPods.
• After Android, iOS is the most used mobile OS on Earth, available in 40 different
languages. It is written in C, C++, Objective-C and Swift. The OS is closed source
instead of open source and it is based on the Macintosh OS X.
• The iOS user interface is based upon direct manipulation, using multi-touch gestures.
Interface control elements consist of sliders, switches, and buttons.
• Interaction with the OS includes gestures such as swipe, tap, pinch, and reverse pinch, all
of which have specific definitions within the context of the iOS operating system and its
multi-touch interface.
• Internal accelerometers are used by some applications to respond to shaking the device
(one common result is the undo command) or rotating it in three dimensions (one
common result is switching between portrait and landscape mode).
• Apple has been significantly praised for incorporating accessibility functions into iOS,
enabling users with vision and hearing disabilities to properly use its products.

Command line based operating system


➢ DOS ( Disk Operating System)
• In the 1980s or early 1990s, the operating system that shipped with most PCs was a
version of the Disk Operating System (DOS) created by Microsoft: MS-DOS.
• MS-DOS is a disk operating system for IBM PC–compatible computers.
• In its day, it was easily the most popular operating system in the world.
• MS-DOS is a disk-based, single-user, single-task operating system.
• The system files of MS-DOS are the IO.SYS, MSDOS.SYS, and COMMAND.COM files.
• MSDOS.SYS: DOS kernel actually resides in this file and offers all the support functions
needed to application programs.
• IO.SYS and MSDOS.SYS are special, hidden system files.
• The IO.SYS file moves the system’s basic I/O functions into memory and then
implements the MS-DOS default control programs, referred to as device drivers, for
various hardware components.

15
• The COMMAND.COM is a command interpreter which accepts commands issued
through the keyboard, or other input device, and carries them out according to the
commands definition

❖ Main function of DOS :


• DOS translate the command issued by the user in the format that is understood by the
computer to execute it, also error messages in the format for the user to understand.
• Manage disk files.
• Allocate system resources according to the requirement.
• DOS provides features essential to control hardware devices such as Keyboard, Screen,
Disk Devices, Printers, Modems and programs.

➢ UNIX
• UNIX was originally developed in 1969 by a group of AT&T employees Ken
Thompson, Dennis Ritchie, Douglas McIlroy, and Joe Ossanna at Bell Labs.
• There are various UNIX variants available in the market. Solaris UNIX, AIX, HP UNIX
and BSD are a few examples. Linux is also a flavor of UNIX which is freely available.
• The UNIX operating system is a set of programs that act as a link between the computer
and the user.
• The computer program that allocates the system resources and coordinates all the details
of the computer's internals is called the operating system or the kernel.
• Users communicate with the kernel through a program known as the shell. The shell is a
command line interpreter; it translates commands entered by the user and converts them
into a language that is understood by the kernel.
• Several people can use a UNIX computer at the same time; hence UNIX is called a
multiuser system.
• A user can also run multiple programs at the same time; hence UNIX is a multitasking
environment.
❖ Here is a basic block diagram of a Unix system

16
• Kernel − The kernel is the heart of the operating system. It interacts with the hardware
and most of the tasks like memory management, task scheduling and file management.
• Shell − The shell is the utility that processes your requests. When you type in a
command at your terminal, the shell interprets the command and calls the program that
you want. The shell uses standard syntax for all commands. C Shell, Bourne Shell and
Korn Shell are the most famous shells which are available with most of the Unix
variants.
• Commands and Utilities − There are various commands and utilities which you can
make use of in your day to day activities. cp, mv, cat and grep, etc. are few examples of
commands and utilities. There are over 250 standard commands plus numerous others
provided through 3rd party software. All the commands come along with various
options.
• Files and Directories − All the data of UNIX is organized into files. All files are then
organized into directories. These directories are further organized into a tree-like
structure called the filesystem.

17
GUI Based OS

➢ Windows Operating System

• Windows is a series of operating systems developed by Microsoft. Each version of


Windows includes a graphical user interface, with a desktop that allows users to view
files and folders in windows. For the past two decades, Windows has been the most
widely used operating system for personal computers PCs.

• Windows is the name of an operating system that was written by Microsoft from their
first release named Windows 1.0 in 1985 up to their latest release named Windows 10 in
2015.

• Unlike Linux or Mac OS X, Windows is not built on UNIX; rather Windows is built on 2
different bases depending on the version of Windows you’re using:
a) Windows 1.0, 2.0, 3.1, 3.11, 95, 98, and ME run on MS-DOS
b) Windows NT, 2000, XP, Vista, 7, 8, 8.1, 10, and CE run on NT
• MS-DOS was Microsoft’s disk operating system (DOS) released in 1981 and is a
command-line interface (CLI) operating system. MS-DOS would serve as the base of
every 16-bit version of Windows.
• NT was Microsoft’s introduction to 32-bit operating systems back in 1993 and currently
serves as the base of all 32-bit and 64-bit versions of Windows.
• As an operating system, Windows 10 and Windows 7 currently hold the largest
percentage of the market share as of 2017.
• Windows is designed to run on standard x86 hardware, such as Intel and
AMD processors. Therefore, it can be installed on multiple brands of hardware, such as
Dell, HP, and Sony computers, as well as home-built PCs. Windows 10 also
includes touchscreen features, that allow the operating system to run on certain tablets
and computers with touchscreen displays.
• Aside from window operating system designed for personal computers (PCs) and laptops,
Microsoft has also developed operating system for services, handheld devices and mobile
phones.
1. Window CE (November 2006) it is designed for small devices such as PDAs for
handheld computing devices.
2. Windows mobile (April 2000) designed for smart phones and mobile devices.
3. Windows phone 7-10 (November 2010) or win phone 7 designed for smart phones and
Mobile devices but targeted more to the consumer market than enterprises market.

18
➢ Linux operating system

• Linux is one of popular version of UNIX operating System. It is open source as its
source code is freely available. It is free to use. Linux was designed considering
UNIX compatibility. Its functionality list is quite similar to that of UNIX.

• From smart phones to cars, supercomputers and home appliances, the Linux
operating system is everywhere.

• Linux. It’s been around since the mid ‘90s, and has since reached a user-base that
spans industries and continents.

• It runs most of the Internet, the supercomputers making scientific breakthroughs,


and the world's stock exchanges.

• But before Linux became the platform to run desktops, servers, and embedded
systems across the globe, it was (and still is) one of the most reliable, secure, and
worry-free operating systems available.

➢ Following are some of the important features of Linux Operating System.


• Portable − Portability means software can works on different types of hardware in
same way. Linux kernel and application programs supports their installation on any
kind of hardware platform.
• Open Source − Linux source code is freely available and it is community based
development project. Multiple teams work in collaboration to enhance the
capability of Linux operating system and it is continuously evolving.
• Multi-User − Linux is a multiuser system means multiple users can access system
resources like memory/ ram/ application programs at same time.
• Multiprogramming − Linux is a multiprogramming system means multiple
applications can run at same time.
• Hierarchical File System − Linux provides a standard file structure in which
system files/ user files are arranged.
• Shell − Linux provides a special interpreter program which can be used to execute
commands of the operating system. It can be used to do various types of operations,
call application programs. etc.
• Security − Linux provides user security using authentication features like password
protection/ controlled access to specific files/ encryption of data.
19
Differences between different types of OS

Multitasking Multiprogramming
• Process of executing multiples • Process of executing multiple
tasks at a time programs at a time

• It is a smallest unit of operation • It is a larger unit of operation

• Efficient CPU utilization • CPU as well as I/O utilization

• Two types of tasks are there • Only programs are there


foreground and background
• User interaction is possible • No user interaction to individual
programs

Time sharing Real time


• In this system fixed time slot is • In this system job has to be
given to each process completed in fixed time.

• If the job is not completed in • If the job is not executed in fixed


fixed time then other process will time the system may fail to
be executed and after processing respond
each job same time will be given
to unfinished job.
• It is not used for practical • It is used for practical application.
application.
• Complicated to design. • Not complicated to design.

20
Difference between Android and IOS

Android IOS

Source model Open source Closed, with open source


components.

OS family Linux OS X, UNIX

Customizability A lot. Can change almost Limited unless jailbroken


anything.

Developer Google, Open Handset Alliance Apple Inc.

Widgets Yes, except on lockscreen No, except in Notification Center

Available 100+ Languages 34 Languages


language(s)

File transfer Easier than iOS. Using USB port More difficult. Media files can be
and Android File Transfer transferred using iTunes desktop
desktop app. Photos can be app. Photos can be transferred out
transferred via USB without via USB without apps.
apps.

Internet Google Chrome (other browsers Safari (Other browsers are


browsing are available). Any browser app available but not as default)
can be set as default.

App store , Google Play Store – 1,000,000+ Apple App Store – 1,000,000+
apps. apps.

Video chat Google Duo and other 3rd party FaceTime (Apple devices only)
apps and other 3rd party apps

Voice Google Assistant Siri


commands

21
Difference between CLI and GUI

CLI GUI
1.
CLI is difficult to use. Whereas it is easy to use.
2.
It consumes low memory. While consumes more memory.

3. In CLI we can obtain high While in it, low precision is


precision. obtained.

4. The speed of GUI is slower


CLI is faster than GUI.
than CLI.

5. CLI operating system needs only While GUI operating system


keyboard. need both mouse and keyboard.

6. In CLI, there are no menus While in GUI, menus are


provided. provided.

7. While in GUI, graphics are


There are no graphics in CLI. used.
While it uses pointing devices
CLR do not use any pointing
8. for selecting and choosing
devices.
items.
Whereas in GUI, spelling
9. In CLI, spelling mistakes and mistakes and typing errors are
typing errors are not avoided. avoided.

Question asked in the previous year papers:

22
(WIN14)
1. Batch operating system
2. Explain Real time OS with the help of diagram. List its type.
3. Describe function of OS in detail.

(SUM15)
1. Explain time sharing operating system.
2. Explain batch operating system.
3. Explain the working of clustered operating system.

(WIN15)
1. List different types of operating systems. Explain advantages of multiprocessor system
2. What is clustered system? Explain it.
3. What is real time system? Explain its types.
4. List any four functions of operating system.

(SUM-16)
1. List any four functions of operating system.
2. Describe real time operating system in brief.

(WIN-16)
1. Define real time operating system. Explain with the help of example.
2. Describe Distributed Operating system.

(SUM-17)

1. Explain multiprocessor system and its two types.


2. Explain multiprogrammed O.S with suitable diagram.
3. With neat diagram, explain real time system. List its any four applications.
(WIN-17)
1. Describe multiprogramming and multitasking
2. Explain time sharing operating system and state its advantages and disadvantages
3. Explain distributed system in detail.
4. List any four services provided by OS and explain any two of them.
5. Describe real time system. State any one example of its application.
(SUM-18)
1. Describe multiprogramming and multitasking
2. Define clustered systems? List four characteristics of clustered systems.
3. Explain Time sharing OS in detail.

(WIN-18)
1. List any four services provided by operating system.
2. Differentiate between multitasking and multiprogramming.
3. Describe real time system and state any two example of its application.

(SUM-19)
1. Explain real time operating system. Explain its types.
2. Describe multiprocessor operating system with its two advantages.
3. Explain any six services of operating system.

23

You might also like