Introduction  Program: Set of sequence instruction that tell the computer what to do.  Software: A collection of programs, data, and information. 

Slides:



Advertisements
Similar presentations
 Computer hardware components are the physical pieces of the computer.  The major hardware components of a computer are: – The central processing.
Advertisements

Programming Creating programs that run on your PC
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design First Edition by Tony Gaddis.
Lecture 1: Intro to Computers Yoni Fridman 6/28/01 6/28/01.
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. COMPSCI 125 Introduction to Computer Science I.
Starting Out with C++: Early Objects 5/e © 2006 Pearson Education. All Rights Reserved Starting Out with C++: Early Objects 5 th Edition Chapter 1 Introduction.
SOFTWARE SYSTEMS SOFTWARE APPLICATIONS SOFTWARE PROGRAMMING LANGUAGES.
Computer Parts There are many parts that work together to make a computer work.
Operating Systems & File Management. What is an operating system?
Course: Introduction to Computers
Systems Software Operating Systems.
Computer Software.
Operating System.
SOFTWARE.
Computer for Health Sciences
Lesson 4 Computer Software
Computer Programming-1 CSC 111 Chapter 1 : Introduction.
Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 1 Introduction to Computers and Programming.
© Paradigm Publishing Inc. 4-1 Chapter 4 System Software.
Today’s Agenda: Computer Basics Review Hardware: The physical components of a computer, any internal or external computer part that you can touch. Software:
Chapter Lead Black Slide Powered by DeSiaMore Powered by DeSiaMore.
What is Computer Software? Hardware vs Software Got to have both to get the job done!
Slide 1 System Software Software The term that we use for all the programs and data that we use with a computer system. Two types of software: Program.
COMPUTER SOFTWARE Section 2 “System Software: Computer System Management ” CHAPTER 4 Lecture-6/ T. Nouf Almujally 1.
CS 0004 –Lecture 1 Wednesday, Jan 5 th, 2011 Roxana Gheorghiu.
Chapter 4 System Software.
Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 1 Introduction to Computer Science.
Software What is software? Software is a general name given to all programs that can run on computer hardware such as spreadsheet. There are two types.
Chapter SIx Maintaining a Computer Part I: Configuring, Updating, and Upgrading the OS.
4 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
Copyright © 2012 Pearson Education, Inc. Chapter 1: Introduction to Computers and Programming.
Programming 1 1. Introduction to object oriented programming and problem-solving.
An Introduction to Computers August 12, 2008 Mrs. C. Furman.
CHAPTER FOUR COMPUTER SOFTWARE.
Introduction to Interactive Media Interactive Media Tools: Software.
Software Writer:-Rashedul Hasan Editor:- Jasim Uddin.
 Why?  Because it can be programmed to do more than one specific task. ◦ Accountants ~ tax forms etc. ◦ Machinists ~ control drilling, lathes etc. ◦
Systems Software Operating Systems. What is software? Software is the term that we use for all the programs and data that we use with a computer system.
Introduction to Computer Software S. Sabraz Nawaz Lecturer in Management & IT.
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 5 Information System Software.
© Paradigm Publishing Inc. 4-1 OPERATING SYSTEMS.
Basic of Programming Language Skill Area Computer System Computer Program Programming Language Programmer Translators.
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.
CS 127 Introduction to Computer Science. What is a computer?  “A machine that stores and manipulates information under the control of a changeable program”
FOUNDATION IN INFORMATION TECHNOLOGY (CS-T-101) TOPIC : INFORMATION SYSTEM – SOFTWARE.
1 Software. 2 What is software ► Software is the term that we use for all the programs and data on a computer system. ► Two types of software ► Program.
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.
Application Software System Software.
Chapter 1 Basic Concepts of Operating Systems Introduction Software A program is a sequence of instructions that enables the computer to carry.
Chapter 4 Software. Introduction Program: is a set of sequence instructions that tell the computer what to do. Software: is a collection of programs,
©2013 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. Introduction to Computers and Computing.
Introduction to Computer Programming Concepts M. Uyguroğlu R. Uyguroğlu.
Introduction to computer programming
WHAT IS HARDWARE ? Computer hardware is the collection of physical elements that comprise a COMPUTER SYSTEM LIKE A MOUSE, MONITOR, KEYBOARD, SPEAKER MICROPHONE,
Computer Basics.
Nature & Types of Software
Hardware and Software Hardware refers to the physical devices of the computer system e.g. monitor, keyboard, printer, RAM etc. Software is a set of programs,
Topics Introduction Hardware and Software How Computers Store Data
Course: Introduction to Computers
Computer Software CS 107 Lecture 2 September 1, :53 PM.
TRANSLATORS AND IDEs Key Revision Points.
Computers: Hardware and Software
Chapter 6 System and Application Software
Introduction to Computer Software
Chapter 6 System and Application Software
Chapter 6 System and Application Software
Chapter 6 System and Application Software
Presentation transcript:

Introduction  Program: Set of sequence instruction that tell the computer what to do.  Software: A collection of programs, data, and information.  Programmer: The person who makes the program.

(Computer Software) (System Software) (Application Software) Computer Software

System Software  It is the software which is used by the computer or operates a computer system.  Built inside the computer or in a CD must be bought. (System Software) (Programming language) (Compiler And Interpreters) (Operating Systems)

Programming language  Programs are developed by the programming languages.  It is a set of words, rules, syntax.  There are many programming languages each to solve specific kinds of problems.  Ex. ( C, Java, Pascal, …etc).

Generations of Programming Languages: 1. Machine Language. 2. Assembly Language. 3. High Level Language. 4. Application Generation. 5. Object Oriented Languages. Programming language

Generations of Programming Languages: 1.Machine Language:  It is written in 1, 0 (Binary system).  Difficult language.  Need long time.  Depends on the computer architecture.

Programming language Generations of Programming Languages: 2.Assembly Language:  Depends on using some of the mnemonic symbols, like: ADD, SUB, MUL, DIV.  Easier than the machine language.  Use other accounting systems.  Depends on the computer architecture.  A translator is needed and it is called (Assembler).

Generations of Programming Languages: 3.High Level Language:  Use statements that user can understand.  It needs translators.  It can be used very easily to solve complex problems.  They are undependable of the computer’s architecture.  Ex. Python, C, Java Programming language

Generations of Programming Languages: 4.Application Generations:  Database language used to create files, forms, queries and reports without the writing of any programs.  Ex. Oracle, Access. Programming language

Generations of Programming Languages: 5.Object Oriented Languages:  Consist of a collection of objects.  Every object contains its variables, data, methods.  Encapsulation: which means that the data and its operations are collected in the same place. You can't access any data without using the operations. Programming language

(System Software) (Programming language) (Compiler And Interpreters) (Operating Systems) System Software

Compiler And Interpreters Compilers and Interpreters: Program that translate the source code into object code. Compilers: translate a whole program once and execute it. Interpreters: translate and execute one instruction at a time. Its slower and use more space than the compiler.

Operating Systems  The most important software.  It holds all the instructions that make the computer work.  No computer can work if it dose not contain a O.S.  Consist of group of program (work like a team) the main control program is the Supervisor:  Known as the Monitor or Executive.  Guides the activates to all the O.S. parts.  Ex. DOS, Windows, Mac O.S, … etc.

MS Windows 1.x 15

MS Windows 98 16

Windows XP

Windows Vista

Windows 7

Windows 8

System1,2,3,4

MAC OS 8

MAC OS X

Mac OS X10.0 “Cheetah” & MAC OS X 10.1 “Puma” “ Cheetah ” “Puma”

Mac OS X10.2 “Jaguar” & MAC OS X 10.3 “Panther” “ Jaguar ” “ Panther ”

Mac OS X10.4 “Tiger” & MAC OS X 10.5 “Leopard” “ Tiger ” “ Leopard ”

Mac OS X10.6 “Snow Leopard” & MAC OS X 10.7 “Lion”& Mac OS X10.8 “Mountain Lion” “ Lion ”“ Snow Leopard ” “ Mountain Lion ”

Linux 28

Ubuntu

Operating System Functions 1. Booting up. 2. User Interface. 3. Task and resources management. 4. Monitoring. 5. File Management. 6. System security.

Operating System Type 1) Multitasking OS: execute more than one task at the same time. 2) Multiprocessing OS: uses more than one CPU. 3) Timesharing OS: time is shared between multi-user to execute their task. 4) Network OS 5) Real Time OS: Input and output operations are happing at the same time (medical devices).

(Computer Software) (System Software) (Application Software) Computer Software

Application Software  Application software is a software used by user  Two categories  Basic applications  general-purpose  Specialized applications  For specific, advanced tasks

Basic Application  Focus on basic and general-purpose tasks

Specialized Applications  Focus on specific disciplines and occupations  Make it possible to perform advanced tasks at home  Examples:  Graphics Programs  Audio and Video Editing Software  Multimedia Creation Programs  Web Designing Programs

Examples

Computer Parts O.S Application Software User

Interfaces  Interface: It’s the way that the user use to deal (communicate) with the computer.  Type: 1. Command Line Interface: 1. Commands must be typed on the keyboard. 2. It’s slow process. 3. Require a high degree of computer knowledge. 1. Graphical User Interface: 1. Use pictures, windows, menus, icons to represent object and operation. 2. User can select any object by pointing the mouse at it an click on it. 3. Ease, enjoyable.

System Development System Development: refers to replacing a manual system into a Computerized system.  Steps of the System Development (System Life Cycle): 1. Preliminary Analysis: What is the system requirements, organization objective. So gather data and write report. 2. Assess Feasibility: Determine if the solution is by computerizing the system?, Is the budget covers? 3. Design: Draw the plan on how its this can be implemented. 4. Implementation(Programming): Write the program. (in this step the system is physically designed).

System Development  Steps of the System Development (System Life Cycle): 5. Testing 6. Training 7. Hand over to client 8. Monitoring and maintaining the system.

Multimedia  Using text, audio, picture, video, …etc in the program.  Used in education, games, commercial.  Multimedia Computer specifications: 1. High specifications in terms of equipment: speed, memory, hard drive. 2. Peripherals: CD drive, sound card, microphone, …etc. 3. Large monitor: screen (graphical) card. 4. DVD drivers.