SlideShare ist ein Scribd-Unternehmen logo
1 von 40
Downloaden Sie, um offline zu lesen
SOFTWARE CONCEPTS
Prof. K ADISESHA (Ph. D)
Contents-
Introduction
Types of Software
Computer Languages
Language Classification
Operating System(OS)
2
Prof. K. Adisesha (Ph. D)
Classification of Software
Introduction
Prof. K. Adisesha (Ph. D)
3
Definition:
“Computer is an electronic machine that can store, recall and process data. It can
perform tasks or complex calculation according to a set of instructions or programs.”
SOFTWARE CONCEPTS
Introduction:
A computer system has three components viz.
 Hardware
 Software
 User
Hardware: It consists of the physical components of a computer.
Software: A set of instructions that tells the computer to perform
an intended task.
Prof. K. Adisesha (Ph. D)
4
Classification of Software
5
Types of Software
Software is broadly classified into two categories namely,
 System Software
 Application Software
Prof. K. Adisesha (Ph. D)
Classification of Software
6
Types of Software
Software is broadly classified into two categories namely,
 System Software
 Application Software
Prof. K. Adisesha (Ph. D)
System Software
7
Prof. K. Adisesha (Ph. D)
System Software:
System software is a computer program that controls the system hardware
and interacts with application software.
 System software is hardware dependent and not portable.
 System software provides a convenient environment for program
development and execution.
 Programming languages like assembly language/C/C++/Visual
C++/Pascal are used to develop the system software.
System Software
8
System software is of three types:
 Language Translators
 Operating System
 Utilities & Device Driver Software
Prof. K. Adisesha (Ph. D)
Application Software
9
Application Software
Application software that has been written to process performs a specific job.
Application software is generally written in high level languages.
It focus is on the application, not the computing system.
Application specific software is created to execute an exact task.
For example accounting software for maintaining accounts.
General purpose software is not limited to only one function.
For example: Microsoft office (MS-Word, MS-Excel), Tally, Oracle etc.
Prof. K. Adisesha (Ph. D)
Application Software
10
Application software
Application software that has been written to process performs a specific job.
Application software is generally written in high level languages.
It focus is on the application, not the computing system.
Application software is classified into two types:
o Application Specific
o General Purpose
Prof. K. Adisesha (Ph. D)
Computer Languages
11
Introduction to Computer Languages
Programming Language is a set of rules called syntax which user has to
follow, to instruct the computer what operation are to be performed.
Prof. K. Adisesha (Ph. D)
Computer Languages
12
Classification of Computer Languages
Computer language are classified into two categories:
 Low-Level Languages
o Machine level languages
o Assembly languages
 High-Level Languages
o General Purpose languages
o Specific purpose languages
Prof. K. Adisesha (Ph. D)
Low-Level Languages
13
Machine Level Language:
Machine level language is the fundamental language of a computer written
using binary numbers i.e. 0’s and 1’s.
 A program written in the machine level language is called Machine code.
 The instructions provided in machine language are directly understood by
the computer and converted into electrical signals to run the computer.
Prof. K. Adisesha (Ph. D)
Low-Level Languages
14
Machine Level Language:
 For example a typical program in machine language:
 The first 8-bit represents Opcode denoting operation such as load, move,
store etc.
 The last 16-bit represents the operand denoting the address.
Prof. K. Adisesha (Ph. D)
Low-Level Languages
15
Machine Level Language:
Advantages:
It can be directly typed and executed and no compilation or translation is
requires.
Disadvantage:
These instructions are machine dependent and it is difficult to program,
modify and debug errors.
Prof. K. Adisesha (Ph. D)
Low-Level Languages
16
Assembly Level Language:
Assembly level language is a low-level programming language that allows a
user to write
programs using letters, words and symbols called mnemonics, instead of the
binary digits used in machine level languages.
A program written in the assembly level language is called Assembly code.
An instruction given in the machine language has two parts:
 OPCODE (Operation Code)
 Operand (Address/ Location)
Prof. K. Adisesha (Ph. D)
Low-Level Languages
17
Assembly Level Language:
For example a typical program in assembly language:
However a program in assembly language has to be converted to its
equivalent machine language to be executed on computer.
The translator program that converts an assembly code into machine code is
called an assembler.
Prof. K. Adisesha (Ph. D)
Low-Level Languages
18
Assembly Level Language:
Advantages:
Mnemonic code are easy to remember, easy to understand, easy to
modify and debug.
Disadvantage:
These languages are the mnemonic are machine dependent and assembly
language programming takes longer to code.
Prof. K. Adisesha (Ph. D)
High-level Languages
19
A language designed to make programming easier through the use of
familiar English words and symbols.
 High-level languages used English like language, which are easier to learn
and use.
 High-level languages are machine independent. Therefore, a program
written for one computer can be executed on different computers with no
or only slight modifications.
 Some of the high-level languages are C, C++, JAVA, FORTRAN,
QBASIC, and PASCAL.
Prof. K. Adisesha (Ph. D)
High-level Languages
20
For example a typical program in high level language to add two numbers:
cin>>a>>b;
c = a + b;
cout<< “ Sum of two numbers = “ << c;
• However a program in high-level language has to be converted to its
equivalent machine language to be executed on computer.
• The translator program that converts an high level code into machine code
is called an compiler.
Prof. K. Adisesha (Ph. D)
High-level Languages
21
Advantage:
o HLL’s are machine independent.
o Easy to learn and understand.
o Easy to modify and debug the program.
Disadvantage:
o HLL is slower in execution.
o HLL requires a compiler to convert source code to object code.
o HLL take more time to execute and require more memory.
Prof. K. Adisesha (Ph. D)
Language Translators
22
Language Translators:
The translator translates the high-level language to low level language.
There are three types of translators:
 Interpreters
 Compilers
 Assemblers
Prof. K. Adisesha (Ph. D)
Language Translators
23
Assembler:
 Assembler is system software which translates an assembly language
program into its machine language.
 It recognizes the mnemonics used in the assembly level languages and
substitutes the required machine code for each instruction.
 Example: TASM (Turbo Assembler), MASM (Microsoft Macro
Assembler) etc.
Prof. K. Adisesha (Ph. D)
Language Translators
24
Compilers:
 Compiler is system software that translates high-level language (source
code) into the machine level language (machine/object code).
 It reads the whole program and translates the entire program at once into a
series of machine level language instructions.
 Once compiled, the program normally gets saved automatically and can be
executed directly.
 Examples: C, C++, etc.,
Prof. K. Adisesha (Ph. D)
Language Translators
25
Interpreters:
An Interpreter reads each statement of a high-level language program and
translates it into machine level language and executes it immediately.
 It continues to read, translate and execute the statements one by one until it
reaches the end of the program.
 Therefore, it is slower than a compiler.
 The machine code produced by the interpreter is not saved and hence, to
execute a statement again, it has to be interpreted again.
 Example: JAVA, Python,
Prof. K. Adisesha (Ph. D)
Linker and Loader
26
Linker :
A linker is system software that links (combines) smaller programs to form a
single program.
 A source program written in high-level languages may contain a number of
modules or segments. To execute properly the modules are to be linked so
that execution of the program is sequential.
 This operation is performed by software called as the linker.
Prof. K. Adisesha (Ph. D)
Linker and Loader
27
Loader:
A loader is system software that loads machine code of a program into the
system memory and prepares these programs for execution.
 Once an executable program is generated someone will have to load the
program into the main memory of the computer so that it can be executed.
 This operation is performed by software called as the loader.
Prof. K. Adisesha (Ph. D)
Utility Software
Prof. K. Adisesha (Ph. D)
28
Utility Software:
Utilities are those helpful programs that assist the computer by performing
helpful functions like backing up disk, scanning/cleaning viruses etc.
 Utility software is generally called as Application oriented ready-made
system programs.
 Some of the important utility software is: Text editor, Backup utility, Disk
Defragmenter, Antivirus software.
Operating System(OS):
29
An operating system is a set of programs which acts as an interface
between the user and the computer.
 Operating system manages the resource, resolves conflicts’ and tries to optimize the
performance of the system.
 Operating System plays an important role in loading programs from disk into
memory, displaying message, translating program and in outputting the results.
 Examples of operating system are:
 UNIX, LINUX,
 Microsoft MS-DOS, and Windows VER. 95, 98, 2000, XP, 7, 8, 10 etc.,
 Google: Android OS
 Apple: Mac OS etc.
Prof. K. Adisesha (Ph. D)
Operating System(OS):
30
Functions of Operating System(OS):
 Main functions of the operating system are as follows:
 Memory Management
 Process Management
 Device Management
 File Management
 Protection and Security
 User interface or Command interpreter
Prof. K. Adisesha (Ph. D)
Operating System(OS):
31
Memory Management:
The activities of memory management handled by OS are:
 Allocate memory
 Free Memory
 Re-allocate memory to a program when a used block is freed
 Keep track of memory usage.
Prof. K. Adisesha (Ph. D)
Operating System(OS):
32
Process Management:
The activities of process management handled by OS are:
 Control access to shared resources like file, memory I/O and CPU
 Control execution of applications
 Create, execute and delete a process
 Cancel or resume a process
 Schedule a process
 Synchronization, communication and deadlock handling for process
Prof. K. Adisesha (Ph. D)
Operating System(OS):
33
File Management:
The activities of file management task handled by OS are:
 Create and delete both files and directories
 Provide access to files
 Allocate space for files
 Keep back-up of files
 Secure files
Prof. K. Adisesha (Ph. D)
Operating System(OS):
34
Device Management:
The activities of device management task handled by OS are:
 Open, close and write device drivers.
 Communication, control and monitor the device drivers
Protection and Security:
OS protects the resource of system.
 User authentication, file attributes like read, write, encryption and back-
up of data are used by OS to provide basic protection.
Prof. K. Adisesha (Ph. D)
Operating System(OS):
35
User Interface or Command Interpreter:
 OS provides an interface between the user and the computer hardware.
 The user interface is a set of commands or a Graphical User Interface via
which the user interacts with the application and the hardware
Prof. K. Adisesha (Ph. D)
Types of Operating System(OS):
36
The different types of operating system are:
 Single user Operating System
 Batch Operating System
 Multiprogramming Operating System
• Multitasking Operating System
• Multiuser Operating System
• Time sharing System (Online /Multiuser)
• Real time system
 Distributed Operating System
 Network Operating System
 Multithreading Operating System
Prof. K. Adisesha (Ph. D)
Operating System(OS):
37
Functional Features of Operating System(OS):
 There are two types of user interface:
 Command-Line User Interface (CUI)
 Graphical User Interface (GUI)
Prof. K. Adisesha (Ph. D)
Operating System(OS):
38
Functional Features of Operating System(OS):
CUI Interface:
 CUI interface allows the user to interact with a computer through text
terminal.
 It is a Non-graphical and text-based user interface.
 MS-DOS is an operating system which provides a CUI.
 The commands must be given at the command prompt ( C:>)
 Both input and output are character based, the interface is also known as
Character User Interface.
Prof. K. Adisesha (Ph. D)
Operating System(OS):
39
Functional Features of Operating System(OS):
GUI Interface:
 The GUI was first introduced in 1984 by Apple with Macintosh.
 GUI is an interface where the commands are selected from menus and
icons rather the typing them from the keyboard.
 It allows user to click on the required icon, with the help of Mouse.
 Windows Operating System is the most popular OS based on GUI
Prof. K. Adisesha (Ph. D)
Queries
40
Prof. K. Adisesha (Ph. D)

Weitere ähnliche Inhalte

Was ist angesagt?

computer software
computer softwarecomputer software
computer softwareAhsan Khan
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMZaheer Abbasi
 
Computer Components
Computer ComponentsComputer Components
Computer ComponentsBeth Sockman
 
Introduction to Computer Softwares
Introduction to Computer SoftwaresIntroduction to Computer Softwares
Introduction to Computer SoftwaresNaresh Dubey
 
Computer languages
Computer languagesComputer languages
Computer languagesAqdasNoor
 
Programming language
Programming languageProgramming language
Programming languageRajThakuri
 
Computer Software & It's types.
Computer Software &  It's types.Computer Software &  It's types.
Computer Software & It's types.Mohit Dhankher
 
Windows Basic Computer Skills
Windows Basic Computer SkillsWindows Basic Computer Skills
Windows Basic Computer SkillsMarvin Nurse
 
Hardware & software
Hardware & softwareHardware & software
Hardware & softwareIsabelop
 
Types and components of computer system
Types and components of computer systemTypes and components of computer system
Types and components of computer systemmkhisalg
 
Data Types Unit-5 IGCSE ICT
Data Types Unit-5 IGCSE ICTData Types Unit-5 IGCSE ICT
Data Types Unit-5 IGCSE ICTmkhisalg
 
COMPUTER MEMORY : TYPES & FUNCTIONS
COMPUTER MEMORY : TYPES & FUNCTIONSCOMPUTER MEMORY : TYPES & FUNCTIONS
COMPUTER MEMORY : TYPES & FUNCTIONSAngel Mary George
 

Was ist angesagt? (20)

computer software
computer softwarecomputer software
computer software
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
 
Application Software
Application Software Application Software
Application Software
 
System software
System softwareSystem software
System software
 
Hardware software components
Hardware software componentsHardware software components
Hardware software components
 
Computer Components
Computer ComponentsComputer Components
Computer Components
 
Computer languages
Computer languagesComputer languages
Computer languages
 
Computer software
Computer softwareComputer software
Computer software
 
Introduction to Computer Softwares
Introduction to Computer SoftwaresIntroduction to Computer Softwares
Introduction to Computer Softwares
 
Computer languages
Computer languagesComputer languages
Computer languages
 
Operating systems
Operating systems Operating systems
Operating systems
 
Programming language
Programming languageProgramming language
Programming language
 
Word processing
Word processingWord processing
Word processing
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Computer Software & It's types.
Computer Software &  It's types.Computer Software &  It's types.
Computer Software & It's types.
 
Windows Basic Computer Skills
Windows Basic Computer SkillsWindows Basic Computer Skills
Windows Basic Computer Skills
 
Hardware & software
Hardware & softwareHardware & software
Hardware & software
 
Types and components of computer system
Types and components of computer systemTypes and components of computer system
Types and components of computer system
 
Data Types Unit-5 IGCSE ICT
Data Types Unit-5 IGCSE ICTData Types Unit-5 IGCSE ICT
Data Types Unit-5 IGCSE ICT
 
COMPUTER MEMORY : TYPES & FUNCTIONS
COMPUTER MEMORY : TYPES & FUNCTIONSCOMPUTER MEMORY : TYPES & FUNCTIONS
COMPUTER MEMORY : TYPES & FUNCTIONS
 

Ähnlich wie SOFTWARE CONCEPTS: AN INTRODUCTION

bui ba ba
bui ba babui ba ba
bui ba babuibaba
 
system software and application software, compiler, interpreter & assembler
system software  and application software, compiler, interpreter & assemblersystem software  and application software, compiler, interpreter & assembler
system software and application software, compiler, interpreter & assemblerchetan birla
 
Introduction to computer software
Introduction to computer softwareIntroduction to computer software
Introduction to computer softwareManvendra Singh
 
Introduction to computer software
Introduction to computer softwareIntroduction to computer software
Introduction to computer softwareDeepu Chaudhary
 
PPS UNIT 1- R18.docx
PPS UNIT 1- R18.docxPPS UNIT 1- R18.docx
PPS UNIT 1- R18.docxUzma1102
 
Computer programming
Computer programmingComputer programming
Computer programmingSuneel Dogra
 
Software programming and development
Software programming and developmentSoftware programming and development
Software programming and developmentAli Raza
 
Computer program, computer languages, computer software
Computer program, computer languages, computer softwareComputer program, computer languages, computer software
Computer program, computer languages, computer softwareSweta Kumari Barnwal
 
Unit i (part2) b.sc
Unit i (part2)   b.scUnit i (part2)   b.sc
Unit i (part2) b.scHepsijeba
 
Programming Fundamental Slide No.1
Programming Fundamental Slide No.1Programming Fundamental Slide No.1
Programming Fundamental Slide No.1Arslan Hussain
 

Ähnlich wie SOFTWARE CONCEPTS: AN INTRODUCTION (20)

Software Concepts Notes
Software Concepts NotesSoftware Concepts Notes
Software Concepts Notes
 
Richa garg itm
Richa garg itmRicha garg itm
Richa garg itm
 
computer Unit 6
computer Unit 6computer Unit 6
computer Unit 6
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
Unit2_1.pdf
Unit2_1.pdfUnit2_1.pdf
Unit2_1.pdf
 
bui ba ba
bui ba babui ba ba
bui ba ba
 
system software and application software, compiler, interpreter & assembler
system software  and application software, compiler, interpreter & assemblersystem software  and application software, compiler, interpreter & assembler
system software and application software, compiler, interpreter & assembler
 
SYSTEM DEVELOPMENT
SYSTEM DEVELOPMENTSYSTEM DEVELOPMENT
SYSTEM DEVELOPMENT
 
Introduction to computer software
Introduction to computer softwareIntroduction to computer software
Introduction to computer software
 
Introduction to computer software
Introduction to computer softwareIntroduction to computer software
Introduction to computer software
 
PPS UNIT 1- R18.docx
PPS UNIT 1- R18.docxPPS UNIT 1- R18.docx
PPS UNIT 1- R18.docx
 
Computer programming
Computer programmingComputer programming
Computer programming
 
Software programming and development
Software programming and developmentSoftware programming and development
Software programming and development
 
Computer program, computer languages, computer software
Computer program, computer languages, computer softwareComputer program, computer languages, computer software
Computer program, computer languages, computer software
 
Ppt softwears
Ppt softwearsPpt softwears
Ppt softwears
 
Unit i (part2) b.sc
Unit i (part2)   b.scUnit i (part2)   b.sc
Unit i (part2) b.sc
 
Programming Fundamental Slide No.1
Programming Fundamental Slide No.1Programming Fundamental Slide No.1
Programming Fundamental Slide No.1
 
Pooja H
Pooja H Pooja H
Pooja H
 
Software
SoftwareSoftware
Software
 
Software and os ch5
Software and os ch5Software and os ch5
Software and os ch5
 

Mehr von Prof. Dr. K. Adisesha

Software Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdfSoftware Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdfProf. Dr. K. Adisesha
 
Software Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdfSoftware Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdfProf. Dr. K. Adisesha
 
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdfSoftware Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdfProf. Dr. K. Adisesha
 
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdfSoftware Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdfProf. Dr. K. Adisesha
 
Software Engineering-Unit 4 "Architectural Design" by Adi.pdf
Software Engineering-Unit 4 "Architectural Design" by Adi.pdfSoftware Engineering-Unit 4 "Architectural Design" by Adi.pdf
Software Engineering-Unit 4 "Architectural Design" by Adi.pdfProf. Dr. K. Adisesha
 
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdfSoftware Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdfProf. Dr. K. Adisesha
 
Computer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. AdiseshaComputer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. AdiseshaProf. Dr. K. Adisesha
 
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. AdiaeshaCCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. AdiaeshaProf. Dr. K. Adisesha
 
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. AdiseshaCCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. AdiseshaProf. Dr. K. Adisesha
 
CCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. AdiseshaCCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. AdiseshaProf. Dr. K. Adisesha
 
CCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdfCCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdfProf. Dr. K. Adisesha
 

Mehr von Prof. Dr. K. Adisesha (20)

Software Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdfSoftware Engineering notes by K. Adisesha.pdf
Software Engineering notes by K. Adisesha.pdf
 
Software Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdfSoftware Engineering-Unit 1 by Adisesha.pdf
Software Engineering-Unit 1 by Adisesha.pdf
 
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdfSoftware Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
Software Engineering-Unit 2 "Requirement Engineering" by Adi.pdf
 
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdfSoftware Engineering-Unit 3 "System Modelling" by Adi.pdf
Software Engineering-Unit 3 "System Modelling" by Adi.pdf
 
Software Engineering-Unit 4 "Architectural Design" by Adi.pdf
Software Engineering-Unit 4 "Architectural Design" by Adi.pdfSoftware Engineering-Unit 4 "Architectural Design" by Adi.pdf
Software Engineering-Unit 4 "Architectural Design" by Adi.pdf
 
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdfSoftware Engineering-Unit 5 "Software Testing"by Adi.pdf
Software Engineering-Unit 5 "Software Testing"by Adi.pdf
 
Computer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. AdiseshaComputer Networks Notes by -Dr. K. Adisesha
Computer Networks Notes by -Dr. K. Adisesha
 
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. AdiaeshaCCN Unit-1&2 Data Communication &Networking by K. Adiaesha
CCN Unit-1&2 Data Communication &Networking by K. Adiaesha
 
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. AdiseshaCCN Unit-3 Data Link Layer by Dr. K. Adisesha
CCN Unit-3 Data Link Layer by Dr. K. Adisesha
 
CCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. AdiseshaCCN Unit-4 Network Layer by Dr. K. Adisesha
CCN Unit-4 Network Layer by Dr. K. Adisesha
 
CCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdfCCN Unit-5 Transport & Application Layer by Adi.pdf
CCN Unit-5 Transport & Application Layer by Adi.pdf
 
Introduction to Computers.pdf
Introduction to Computers.pdfIntroduction to Computers.pdf
Introduction to Computers.pdf
 
R_Programming.pdf
R_Programming.pdfR_Programming.pdf
R_Programming.pdf
 
Scholarship.pdf
Scholarship.pdfScholarship.pdf
Scholarship.pdf
 
Operating System-2 by Adi.pdf
Operating System-2 by Adi.pdfOperating System-2 by Adi.pdf
Operating System-2 by Adi.pdf
 
Operating System-1 by Adi.pdf
Operating System-1 by Adi.pdfOperating System-1 by Adi.pdf
Operating System-1 by Adi.pdf
 
Operating System-adi.pdf
Operating System-adi.pdfOperating System-adi.pdf
Operating System-adi.pdf
 
Data_structure using C-Adi.pdf
Data_structure using C-Adi.pdfData_structure using C-Adi.pdf
Data_structure using C-Adi.pdf
 
JAVA PPT -2 BY ADI.pdf
JAVA PPT -2 BY ADI.pdfJAVA PPT -2 BY ADI.pdf
JAVA PPT -2 BY ADI.pdf
 
JAVA PPT -5 BY ADI.pdf
JAVA PPT -5 BY ADI.pdfJAVA PPT -5 BY ADI.pdf
JAVA PPT -5 BY ADI.pdf
 

Kürzlich hochgeladen

Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataBabyAnnMotar
 
Millenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxMillenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxJanEmmanBrigoli
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operationalssuser3e220a
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEaurabinda banchhor
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 

Kürzlich hochgeladen (20)

FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped data
 
Millenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxMillenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operational
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSE
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 

SOFTWARE CONCEPTS: AN INTRODUCTION

  • 1. SOFTWARE CONCEPTS Prof. K ADISESHA (Ph. D)
  • 2. Contents- Introduction Types of Software Computer Languages Language Classification Operating System(OS) 2 Prof. K. Adisesha (Ph. D) Classification of Software
  • 3. Introduction Prof. K. Adisesha (Ph. D) 3 Definition: “Computer is an electronic machine that can store, recall and process data. It can perform tasks or complex calculation according to a set of instructions or programs.”
  • 4. SOFTWARE CONCEPTS Introduction: A computer system has three components viz.  Hardware  Software  User Hardware: It consists of the physical components of a computer. Software: A set of instructions that tells the computer to perform an intended task. Prof. K. Adisesha (Ph. D) 4
  • 5. Classification of Software 5 Types of Software Software is broadly classified into two categories namely,  System Software  Application Software Prof. K. Adisesha (Ph. D)
  • 6. Classification of Software 6 Types of Software Software is broadly classified into two categories namely,  System Software  Application Software Prof. K. Adisesha (Ph. D)
  • 7. System Software 7 Prof. K. Adisesha (Ph. D) System Software: System software is a computer program that controls the system hardware and interacts with application software.  System software is hardware dependent and not portable.  System software provides a convenient environment for program development and execution.  Programming languages like assembly language/C/C++/Visual C++/Pascal are used to develop the system software.
  • 8. System Software 8 System software is of three types:  Language Translators  Operating System  Utilities & Device Driver Software Prof. K. Adisesha (Ph. D)
  • 9. Application Software 9 Application Software Application software that has been written to process performs a specific job. Application software is generally written in high level languages. It focus is on the application, not the computing system. Application specific software is created to execute an exact task. For example accounting software for maintaining accounts. General purpose software is not limited to only one function. For example: Microsoft office (MS-Word, MS-Excel), Tally, Oracle etc. Prof. K. Adisesha (Ph. D)
  • 10. Application Software 10 Application software Application software that has been written to process performs a specific job. Application software is generally written in high level languages. It focus is on the application, not the computing system. Application software is classified into two types: o Application Specific o General Purpose Prof. K. Adisesha (Ph. D)
  • 11. Computer Languages 11 Introduction to Computer Languages Programming Language is a set of rules called syntax which user has to follow, to instruct the computer what operation are to be performed. Prof. K. Adisesha (Ph. D)
  • 12. Computer Languages 12 Classification of Computer Languages Computer language are classified into two categories:  Low-Level Languages o Machine level languages o Assembly languages  High-Level Languages o General Purpose languages o Specific purpose languages Prof. K. Adisesha (Ph. D)
  • 13. Low-Level Languages 13 Machine Level Language: Machine level language is the fundamental language of a computer written using binary numbers i.e. 0’s and 1’s.  A program written in the machine level language is called Machine code.  The instructions provided in machine language are directly understood by the computer and converted into electrical signals to run the computer. Prof. K. Adisesha (Ph. D)
  • 14. Low-Level Languages 14 Machine Level Language:  For example a typical program in machine language:  The first 8-bit represents Opcode denoting operation such as load, move, store etc.  The last 16-bit represents the operand denoting the address. Prof. K. Adisesha (Ph. D)
  • 15. Low-Level Languages 15 Machine Level Language: Advantages: It can be directly typed and executed and no compilation or translation is requires. Disadvantage: These instructions are machine dependent and it is difficult to program, modify and debug errors. Prof. K. Adisesha (Ph. D)
  • 16. Low-Level Languages 16 Assembly Level Language: Assembly level language is a low-level programming language that allows a user to write programs using letters, words and symbols called mnemonics, instead of the binary digits used in machine level languages. A program written in the assembly level language is called Assembly code. An instruction given in the machine language has two parts:  OPCODE (Operation Code)  Operand (Address/ Location) Prof. K. Adisesha (Ph. D)
  • 17. Low-Level Languages 17 Assembly Level Language: For example a typical program in assembly language: However a program in assembly language has to be converted to its equivalent machine language to be executed on computer. The translator program that converts an assembly code into machine code is called an assembler. Prof. K. Adisesha (Ph. D)
  • 18. Low-Level Languages 18 Assembly Level Language: Advantages: Mnemonic code are easy to remember, easy to understand, easy to modify and debug. Disadvantage: These languages are the mnemonic are machine dependent and assembly language programming takes longer to code. Prof. K. Adisesha (Ph. D)
  • 19. High-level Languages 19 A language designed to make programming easier through the use of familiar English words and symbols.  High-level languages used English like language, which are easier to learn and use.  High-level languages are machine independent. Therefore, a program written for one computer can be executed on different computers with no or only slight modifications.  Some of the high-level languages are C, C++, JAVA, FORTRAN, QBASIC, and PASCAL. Prof. K. Adisesha (Ph. D)
  • 20. High-level Languages 20 For example a typical program in high level language to add two numbers: cin>>a>>b; c = a + b; cout<< “ Sum of two numbers = “ << c; • However a program in high-level language has to be converted to its equivalent machine language to be executed on computer. • The translator program that converts an high level code into machine code is called an compiler. Prof. K. Adisesha (Ph. D)
  • 21. High-level Languages 21 Advantage: o HLL’s are machine independent. o Easy to learn and understand. o Easy to modify and debug the program. Disadvantage: o HLL is slower in execution. o HLL requires a compiler to convert source code to object code. o HLL take more time to execute and require more memory. Prof. K. Adisesha (Ph. D)
  • 22. Language Translators 22 Language Translators: The translator translates the high-level language to low level language. There are three types of translators:  Interpreters  Compilers  Assemblers Prof. K. Adisesha (Ph. D)
  • 23. Language Translators 23 Assembler:  Assembler is system software which translates an assembly language program into its machine language.  It recognizes the mnemonics used in the assembly level languages and substitutes the required machine code for each instruction.  Example: TASM (Turbo Assembler), MASM (Microsoft Macro Assembler) etc. Prof. K. Adisesha (Ph. D)
  • 24. Language Translators 24 Compilers:  Compiler is system software that translates high-level language (source code) into the machine level language (machine/object code).  It reads the whole program and translates the entire program at once into a series of machine level language instructions.  Once compiled, the program normally gets saved automatically and can be executed directly.  Examples: C, C++, etc., Prof. K. Adisesha (Ph. D)
  • 25. Language Translators 25 Interpreters: An Interpreter reads each statement of a high-level language program and translates it into machine level language and executes it immediately.  It continues to read, translate and execute the statements one by one until it reaches the end of the program.  Therefore, it is slower than a compiler.  The machine code produced by the interpreter is not saved and hence, to execute a statement again, it has to be interpreted again.  Example: JAVA, Python, Prof. K. Adisesha (Ph. D)
  • 26. Linker and Loader 26 Linker : A linker is system software that links (combines) smaller programs to form a single program.  A source program written in high-level languages may contain a number of modules or segments. To execute properly the modules are to be linked so that execution of the program is sequential.  This operation is performed by software called as the linker. Prof. K. Adisesha (Ph. D)
  • 27. Linker and Loader 27 Loader: A loader is system software that loads machine code of a program into the system memory and prepares these programs for execution.  Once an executable program is generated someone will have to load the program into the main memory of the computer so that it can be executed.  This operation is performed by software called as the loader. Prof. K. Adisesha (Ph. D)
  • 28. Utility Software Prof. K. Adisesha (Ph. D) 28 Utility Software: Utilities are those helpful programs that assist the computer by performing helpful functions like backing up disk, scanning/cleaning viruses etc.  Utility software is generally called as Application oriented ready-made system programs.  Some of the important utility software is: Text editor, Backup utility, Disk Defragmenter, Antivirus software.
  • 29. Operating System(OS): 29 An operating system is a set of programs which acts as an interface between the user and the computer.  Operating system manages the resource, resolves conflicts’ and tries to optimize the performance of the system.  Operating System plays an important role in loading programs from disk into memory, displaying message, translating program and in outputting the results.  Examples of operating system are:  UNIX, LINUX,  Microsoft MS-DOS, and Windows VER. 95, 98, 2000, XP, 7, 8, 10 etc.,  Google: Android OS  Apple: Mac OS etc. Prof. K. Adisesha (Ph. D)
  • 30. Operating System(OS): 30 Functions of Operating System(OS):  Main functions of the operating system are as follows:  Memory Management  Process Management  Device Management  File Management  Protection and Security  User interface or Command interpreter Prof. K. Adisesha (Ph. D)
  • 31. Operating System(OS): 31 Memory Management: The activities of memory management handled by OS are:  Allocate memory  Free Memory  Re-allocate memory to a program when a used block is freed  Keep track of memory usage. Prof. K. Adisesha (Ph. D)
  • 32. Operating System(OS): 32 Process Management: The activities of process management handled by OS are:  Control access to shared resources like file, memory I/O and CPU  Control execution of applications  Create, execute and delete a process  Cancel or resume a process  Schedule a process  Synchronization, communication and deadlock handling for process Prof. K. Adisesha (Ph. D)
  • 33. Operating System(OS): 33 File Management: The activities of file management task handled by OS are:  Create and delete both files and directories  Provide access to files  Allocate space for files  Keep back-up of files  Secure files Prof. K. Adisesha (Ph. D)
  • 34. Operating System(OS): 34 Device Management: The activities of device management task handled by OS are:  Open, close and write device drivers.  Communication, control and monitor the device drivers Protection and Security: OS protects the resource of system.  User authentication, file attributes like read, write, encryption and back- up of data are used by OS to provide basic protection. Prof. K. Adisesha (Ph. D)
  • 35. Operating System(OS): 35 User Interface or Command Interpreter:  OS provides an interface between the user and the computer hardware.  The user interface is a set of commands or a Graphical User Interface via which the user interacts with the application and the hardware Prof. K. Adisesha (Ph. D)
  • 36. Types of Operating System(OS): 36 The different types of operating system are:  Single user Operating System  Batch Operating System  Multiprogramming Operating System • Multitasking Operating System • Multiuser Operating System • Time sharing System (Online /Multiuser) • Real time system  Distributed Operating System  Network Operating System  Multithreading Operating System Prof. K. Adisesha (Ph. D)
  • 37. Operating System(OS): 37 Functional Features of Operating System(OS):  There are two types of user interface:  Command-Line User Interface (CUI)  Graphical User Interface (GUI) Prof. K. Adisesha (Ph. D)
  • 38. Operating System(OS): 38 Functional Features of Operating System(OS): CUI Interface:  CUI interface allows the user to interact with a computer through text terminal.  It is a Non-graphical and text-based user interface.  MS-DOS is an operating system which provides a CUI.  The commands must be given at the command prompt ( C:>)  Both input and output are character based, the interface is also known as Character User Interface. Prof. K. Adisesha (Ph. D)
  • 39. Operating System(OS): 39 Functional Features of Operating System(OS): GUI Interface:  The GUI was first introduced in 1984 by Apple with Macintosh.  GUI is an interface where the commands are selected from menus and icons rather the typing them from the keyboard.  It allows user to click on the required icon, with the help of Mouse.  Windows Operating System is the most popular OS based on GUI Prof. K. Adisesha (Ph. D)