Chapter 6 System and Application Software

Slides:



Advertisements
Similar presentations
Lecture 1: Overview of Computers & Programming
Advertisements

©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. COMPSCI 125 Introduction to Computer Science I.
Chapter 7 Managing Data Sources. ASP.NET 2.0, Third Edition2.
General concepts of ICT systems.  Know what is meant by the terms ‘hardware’ and ‘software’  Understand the difference between systems software and.
Course: Introduction to Computers
Standard 1 - Objective 2: Understand, evaluate, and use computer software.
Computer for Health Sciences
Lesson 4 Computer Software
Lesson 4: What Is Software?
Computer Programming-1 CSC 111 Chapter 1 : Introduction.
© Paradigm Publishing Inc. 4-1 Chapter 4 System Software.
Lesson 6 Operating Systems and Software
Chapter Lead Black Slide Powered by DeSiaMore Powered by DeSiaMore.
COMPUTER SOFTWARE Section 2 “System Software: Computer System Management ” CHAPTER 4 Lecture-6/ T. Nouf Almujally 1.
Chapter 4 System Software.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1: Introduction to Computers and Programming.
SOFTWARE It Consists of a series of instructions that tells the computer what to do. It is collection of programs. Software is set of instruction which.
Chapter 9 Designing Databases Modern Systems Analysis and Design Sixth Edition Jeffrey A. Hoffer Joey F. George Joseph S. Valacich.
Introduction to Interactive Media Interactive Media Tools: Software.
Chapter 3: Computer Software. Stored Program Concept v The concept of preparing a precise list of exactly what the computer is to do (this list is called.
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 5 Information System Software.
© Paradigm Publishing Inc. 4-1 OPERATING SYSTEMS.
School of Computer Science & Information Technology G6DICP Introduction to Computer Programming Milena Radenkovic.
Liang, Introduction to C++ Programming, (c) Chapter 1 Introduction to Computers, Programs, and C++
Tolo-e-aftab higher education 1 th semester Bcs 1/2/1392 MINISTRY OF HIGHER EDUCATION.
Foundation year Lec.3: Computer SoftwareLec.3: Computer Software Lecturer: Dalia Mirghani Year: 2014/2015.
Chapter 1 Computers, Compilers, & Unix. Overview u Computer hardware u Unix u Computer Languages u Compilers.
© Paradigm Publishing, Inc. 4-1 Chapter 4 System Software Chapter 4 System Software.
Chapter 1 : Overview of Computer and Programming By Suraya Alias
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
Application Software System Software.
Computing Fundamentals Module Lesson 23 — Computer Software
By Tom and James. Hardware is a physical part of the system that you can pick up and move. There are two types of hardware, external and internal. External.
Chapter 4 Software. Introduction Program: is a set of sequence instructions that tell the computer what to do. Software: is a collection of programs,
Introduction  Program: Set of sequence instruction that tell the computer what to do.  Software: A collection of programs, data, and information. 
©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. Introduction to Computers and Computing.
Computer Organization & Assembly Language Chapter _ 04 Ghazanfer Mirza.
OPERATING SYSTEMS (OS) By the end of this lesson you will be able to explain: 1. What an OS is 2. The relationship between the OS & application programs.
WHAT IS HARDWARE ? Computer hardware is the collection of physical elements that comprise a COMPUTER SYSTEM LIKE A MOUSE, MONITOR, KEYBOARD, SPEAKER MICROPHONE,
Identify internal hardware devices (e. g
Computer Applications in Business
Topic 2: Hardware and Software
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
BASIC PROGRAMMING C SCP1103 (02)
Computer Systems – Hardware, Operating System, & Software
Nature & Types of Software
Topics Introduction Hardware and Software How Computers Store Data
Chapter 1 Introduction to Computers, Programs, and C++
CSCI-235 Micro-Computer Applications
Lecture 1: Introduction to JAVA
BASIC PROGRAMMING C SCP1103 (02)
ICS103 Programming in C Lecture 1: Overview of Computers & Programming
Operating Systems Overview
Course: Introduction to Computers
Computer Software CS 107 Lecture 2 September 1, :53 PM.
Systems Software Keywords Operating Systems
What is a Database and Why Use One?
Computer Science I CSC 135.
System And Application Software
Computers: Hardware and Software
Chapter 6 System and Application Software
Database.
Chapter 6 System and Application Software
Topics Introduction Hardware and Software How Computers Store Data
Introduction to Computer Software
Chapter 6 System and Application Software
TOPIC: HARDWARE AND SOFTWARE
Computer components is a programmable machine that receives input, stores and manipulates data, and provides output in a useful format. Computer The computer.
Chapter 6 System and Application Software
Bioinformatics (Nursing)
Presentation transcript:

Chapter 6 System and Application Software Introduction Software is the collection of computer programs and related data that provide the instructions that tell a computer what to do. Software is intangible, meaning it “cannot be touched”. Two types of Software 1.System Software 2.Application Software

System Software Refers to the files and programs that make up your computer’s operating system. They provide and maintain a platform for running application software. System software runs at the most basic level of your computer, it is called “low-level” software. Most important types of System software are:

Computer BIOS and device firmware: Which provide basic functionality to operate and control the hardware connected to or built into the computer. Utility Software: Which helps to analyze, configure, optimize and maintain the computer like file manager, Anti-virus and disk cleaners. Operation System: Is a program to run other programs on a computer Is the most important program for computer. Is considered the backbone of a computer, managing both software and hardware resources.

Operating system are responsible for everything form the control and allocation of memory to recognizing input from external devices and transmitting output to computer displays. They also manage files on computer hard drives and control peripherals like printers and scanners. It is an interface between your computer and the outside world.

OS provides an interface to monitor, keyboard, mouse and other parts using what is referred to as “drivers”. Example: When you install a new printer or other piece of hardware, your system will ask you install more software called a driver(like video card, sound card,etc).

Example for Operating System Windows 7, Windows Vista, Windows 2003, Windows XP, Windows 2000, Linux, Unix and Mac

Programming Languages Programming Languages are syntax, grammar and symbols that are used to give instructions to a computer. i.e, it is a language designed to describe a set of consecutive actions to be executed by a computer. It is a practical way for us to give instructions to a computer.

Generations of Programming Languages First Generation Language (or) Machine language It is a computer(machine) language. It is the lowest level programming language and the only language the computer can understand. All the commands and data values are given in zeros and ones.

2. Second Generation Languages (or) Assembly Languages These are symbolic programming languages that use symbolic notation to represent machine language instructions. They are also called low-level languages because they are so closely to the machines.

3. Third Generation Languages (or) High Level Languages Somewhere between natural languages and machine languages. They were developed to make the programming process more efficient. Examples: C,C++, Visual Basic, FORTRAN, COBOL 4. Fourth Generation Languages: These languages are easy to use and more like natural languages. Example: SQL(Structured Query Language)

5. Fifth Generation Languages: Referred to as Object Oriented Languages. In these languages, a program is no longer a series of instructions, but a collection of objects. These objects contains data and operations(instructions). These objects are created by the class concept. Examples: C++, Java, Ada and SmallTalk.

Except First Generation Languages (Machine Language), all languages need one of the following translators to convert them to the machine language. Assemblers: are programs to convert an assembly language(source code) into a machine language(object code or target code).

2. Compilers: Are programs which reads a source program created by a programmer, and then converted it into a set of instructions known as the object code or the machine code. The object program is in a form that a computer can understand and execute directly.

Introduction to Databases A database is a set of data that has a regular structure and is organized in such a way that a computer can easily find any desired information A database management system (DBMS) is a software that has been created to allow the efficient use and management of databases. Example: MS-Access and ORACLE

Database Model It is a theory or specification describing how a database is structured and used (like: Hierarchical DB model, Network DB model, Relational DB model, Entity-relationship, Object-relational DB model, Object DB model) Relational DB model: is the most popular model of database it is the way of organizing data in a way that appears to the user to be stored in a series of interrelated tables

Relational Database Model data are structured into tables (i.e., "relations") consisting of rows and columns. Each row contains a single record comprised of individual data elements (or "attributes") organized in columns containing elements of the same kind according to the rules defined for that column.

Relational Database Model - Example

Benefits of Relational Database Model The benefits of a database that has been designed according to the relational model are numerous. Some of them are: Simplicity This provides a more simple structure than those that were being before it. The table structure is an intuitive organization familiar to most user. Relatively easy for users to understand. Easy to retrieve, insert, update and delete data from tables by using SQL (Structural Query Language), this is an easy and human readable language

Benefits of Relational Database Model Have an excellent security; a relational database supports access permissions, which allow the database administrator to implement need based permissions to the access of the data in database tables. Flexibility: The relational database model is naturally scalable and extensible, providing a flexible structure to meet changing requirements and increasing amounts of data.

Primary Key: The column (or combination of columns) in a table with unique value is referred to as primary key. NULL values or empty is not allowable values for the primary key. We indicate the primary key in the table by underlining the column name Foreign Key A foreign key is a column in a table used to reference a primary key in another table. The foreign and primary keys may be with the same column name or not, but they must be the same domain (data type and range of values)