Skip to main content

Operating System

  Introduction to OS

 - An operating system is system software that manages computer hardware  and software resources and provide common services for computer programs. For hardware functions  such as input, output and memory allocation, the operating system acts as an intermediary between the programs and the computer hardware.

 The two types of major software are System Software and Application Software.

An operating system performs following functions :

- Device Management

- Memory and file storage management

- Process management

- User application program management

-Error management

- CPU scheduling 

- Providing interface between user and computer system foe interaction.

Types of operating system

Based on user interface , an operating system is classified as:

Graphical User Interface(GUI)- Provides interface having icons, menus etc. to the user to interact with the computer. for example, windows, Linux etc. 

Command Line Interface(CLI) - Provides interface that allows user to enter commands as texts to interact with the computer. for example, MS-DOS, Unix etc.

Different types of operating system According to mode of use :

Network operating System - Is an operating system designed to support a network. It enable various computers connected to the network to share resources such as data, file, devices etc.

Client operating system - Is an operating system that runs on a desktop or notebook computers. It also known as standalone operating system.

IOS - IOS stands for Internetwork Operating System, these are the most used versions in Cisco Routers and Switches.

RTOS - Real Time Operating System - These are the OS designed for mobile devices for real time response. example is Android.

Types of OS based on user environment  and task :

Single user and single task - A user can perform single task at a given point of time .ex, MS-DOS.

Single user with multi-tasking - A single user can run multiple programs, ex, windows or mac environment.

Network operating systems are :

windows server 2012

windows server 2008

windows server 2003

windows server 2000

Linux

Unix 

Netware

Client operating systems are :

windows 10

windows 8.1, 8

windows 7

windows Vista

windows XP

windows 95/98

MS-DOS

Minimum hardware requirements  for installing windows 10-

Processor - 1 gigahertz(GHZ) or faster processor  or SoC

RAM - 1 gigabyte(GB) for 32 bit or 2 GB for 64 bit

Hardware Space - 16  GB for 32 bit  OS , 20 GB for 64 bit OS

Graphics card - DirectX 9 or later with WDDM 1.0 driver

Display  -800 * 600


Comments

Popular posts from this blog

what is computer network and their types ?

   what is network ? -  A network is a group of two or more computer systems, which are connected together. It also consist of a collection of computers, printers, scanner and other devices that are liked together. Networking has single purpose to share information as fast as possible.   The basic types of network- 1) LAN - LAN stands for Local Area Network. It is used to network computers within a limited area like office, school by using the network media. 2) CAN - Campus Area Network is an interconnection of local area networks within limited geographical area. campus network can be additional to the set of wireless connections. connects several buildings to the same network. Example, corporate office campus, university. 3) MAN - MAN means Metropolitan Area Network, which optimized for a larger geographic area than a LAN, ranging from several blocks of buildings to entire city. 4) WAN - WAN is Wide Area Network that is network connection of wide area such as the w...

Levels of Software Testing

   Levels of Software Testing There are various testing levels one of which is unit testing in which the smallest testable part of an application is testing for correctness. In integration testing we check the system when we linking  the various modules.  In system testing we check the system as a whole from customers’ viewpoint. Acceptance testing tries to check whether the system is acceptable by most of the users. Alpha testing is carried out at developer’s site and beta is at customer’s site. A Testers workbench is a virtual environment used to verify the correctness or soundness of a design or model. 11 step testing process is a experience based practical approach for solution to a test assignment.     UNIT TESTING -        Unit testing is a software development process in which the smallest testable parts of an application, called units, are individually and independently scrutinized for proper operation. Unit testing is often...

PL / SQL IN DBMS

                                          PL / SQL   Pl/SQL    state Loops in PL/SQL   Built in Function     Cursor Management     Exception INTRODUCTION   PL/SQL stands for Procedural Language/SQL. PL/SQL extends SQL by adding constructs found in procedural languages,  resulting in a structural language that is more powerful than  SQL.PL/SQL is not case sensitive. ‘C’ style comments (/* ……… */)  may be used in PL/SQL programs whenever required.   All PL/SQL programs are made up of blocks, each block performs  a logical action in the program. A PL/SQL block consists of three parts  1. Declaration section   2. Executable section   3. Exception handling section  Only the executable section is required. The other sections are  optional.  A PL/SQL block h...