Operating System Interview Questions and Answers
Operating System Interview Questions and Answers
Answers
What's OPERATING SYSTEM?
An Operating System, or OS, is a software program that enables the computer hardware to
communicate and operate with the computer software. Without a computer Operating System, a
computer would be useless.
GUI - Short for Graphical User Interface, a GUI Operating System contains graphics and icons
and is commonly navigated by using a computer mouse. See our GUI dictionary definition for a
complete definition. Below are some examples of GUI Operating Systems.
System 7.x
Windows 98
Windows CE
Multi-user - A multi-user Operating System allows for multiple users to use the same computer
at the same time and/or different times. See our multi-user dictionary definition for a complete
definition for a complete definition. Below are some examples of multi-user Operating Systems.
Linux
Unix
Windows 2000
Windows XP
Mac OS X
Multiprocessing - An Operating System capable of supporting and utilizing more than one
computer processor. Below are some examples of multiprocessing Operating Systems.
Linux
Unix
Windows 2000
Windows XP
Mac OS X
Multithreading - Operating systems that allow different parts of a software program to run
concurrently. Operating systems that would fall into this category are:
Linux
Unix
Windows 2000
Windows XP
Mac OS X
- Operating system controls and coordinates the use of the hardware among the various
applications programs for various uses. Operating system acts as resource allocator and manager.
Since there are many possibly conflicting requests for resources the operating system must
decide which requests are allocated resources to operating the computer system efficiently and
fairly. Also operating system is control program which controls the user programs to prevent
errors and improper use of the computer. It is especially concerned with the operation and
control of I/O devices.
While running DOS on a PC, which command would be used to duplicate the entire
diskette?
diskcopy
What resources are used when a thread created? How do they differ from those when a
process is created?
When a thread is created the threads does not require any new resources to execute the thread
shares the resources like memory of the process to which they belong to. The benefit of code
sharing is that it allows an application to have several different threads of activity all within the
same address space. Whereas if a new process creation is very heavyweight because it always
requires new address space to be created and even if they share the memory then the inter
process communication is expensive when compared to the communication between the threads.
What is the state of the processor, when a process is waiting for some event to occur?
Waiting state
What is the cause of thrashing? How does the system detect thrashing?
Once it detects thrashing, what can the system do to eliminate this problem? - Thrashing is
caused by under allocation of the minimum number of pages required by a process, forcing it to
continuously page fault. The system can detect thrashing by evaluating the level of CPU
utilization as compared to the level of multiprogramming. It can be eliminated by reducing the
level of multiprogramming.
- Fragmentation occurs in a dynamic memory allocation system when many of the free blocks
are too small to satisfy any request. External Fragmentation: External Fragmentation happens
when a dynamic memory allocation algorithm allocates some memory and a small piece is left
over that cannot be effectively used. If too much external fragmentation occurs, the amount of
usable memory is drastically reduced. Total memory space exists to satisfy a request, but it is not
contiguous. Internal Fragmentation: Internal fragmentation is the space wasted inside of
allocated memory blocks because of restriction on the allowed sizes of allocated blocks.
Allocated memory may be slightly larger than requested memory; this size difference is memory
internal to a partition, but not being used
What is Dispatcher?
- Dispatcher module gives control of the CPU to the process selected by the short-term
scheduler; this involves: Switching context, Switching to user mode, Jumping to the proper
location in the user program to restart that program, dispatch latency – time it takes for the
dispatcher to stop one process and start another running.