Overview History Hardware Software Software Development Life Cycle

Slides:



Advertisements
Similar presentations
Overview of Programming and Problem Solving ROBERT REAVES.
Advertisements

Copyright © 2002 W. A. Tucker1 Chapter 1 Lecture Notes Bill Tucker Austin Community College COSC 1315.
1 Chapter 1 Introduction to Object-Oriented Programming.
1 Chapter 1 Overview of Programming and Problem Solving Dale/Weems Slides based on work by Sylvia Sorkin, Community College of Baltimore County - Essex.
This set of slides is provided by the author of the textbook1 Introductory Topics l Computer Programming l Programming Life-Cycle Phases l Creating an.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
1 Chapter 1 Overview of Programming and Problem Solving Dale/Weems/Headington Slides by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
SOFTWARE SYSTEMS SOFTWARE APPLICATIONS SOFTWARE PROGRAMMING LANGUAGES.
PRE-PROGRAMMING PHASE
Chapter 1 Introduction to Programming. Computer Hardware CPU Memory –Main or primary –Secondary or auxiliary Input device(s) Output device(s)
Computer Science I CS rmaclin
CS 115 Chapter 1 Overview of Programming and Problem Solving.
Principles of Programming Chapter 1: Introduction  In this chapter you will learn about:  Overview of Computer Component  Overview of Programming 
Tools make jobs easier to do -A computer is a tool used by many professions A computer can do many different jobs because they are programmable - Machine.
1 Chapter 1 Overview of Programming and Problem Solving Slides based on work by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
1 Author: Nell Dale Chip Weems Mark Headington Published By Higher Education Press Jones and Bartlett Publishers.
Sw development1 Software Development 1.Define the problem (Analysis) 2.Plan the solution 3.Code 4.Test and debug 5.Maintain and Document.
1 Chapter 1 Overview of Programming and Problem Solving Dale/Weems Slides based on work by Sylvia Sorkin, Community College of Baltimore County - Essex.
สาขาวิชาเทคโนโลยี สารสนเทศ คณะเทคโนโลยีสารสนเทศ และการสื่อสาร.
CHAPTER 1 Overview of Programming and Problem Solving.
Computer system overview1 The Effects of Computers Pervasive in all professions How have computers affected my life? How have computers affected my life?
1 Overview of Programming and Problem Solving Chapter 1.
Overview of Programming and Problem Solving Textbook Chapter 1 1.
C++ Programming Language Lecture 2 Problem Analysis and Solution Representation By Ghada Al-Mashaqbeh The Hashemite University Computer Engineering Department.
INTRODUCTION TO COMPUTING CHAPTER NO. 04. Programming Languages Program Algorithms and Pseudo Code Properties and Advantages of Algorithms Flowchart (Symbols.
1 Chapter 1 Overview of Programming and Problem Solving Dale/Weems/Headington.
Chapter 1 Overview of Programming and Problem Solving 1.
1 Chapter 1 Overview of Programming and Problem Solving Dale/Weems Slides based on work by Sylvia Sorkin, Community College of Baltimore County - Essex.
Cosc175 - Define Problem/Design Solution/Pseudocode/Trace 1 DEFINE THE PROBLEM.
1 Chapter 1 Overview of Programming and Problem Solving Slides based on work by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
Programming in C++ Dale/Weems/Headington Chapter 1 Overview of Programming and Problem Solving.
Chapter 1 Overview of Programming and Problem Solving CS185/09 - Introduction to Programming Caldwell College.
Chapter 1 : Overview of Computer and Programming By Suraya Alias
1 Overview of Programming Principles of Computers.
CSCI 161 Lecture 3 Martin van Bommel. Operating System Program that acts as interface to other software and the underlying hardware Operating System Utilities.
Introduction to Computer Programming using Fortran 77.
Evolution of C and C++ n C was developed by Dennis Ritchie at Bell Labs (early 1970s) as a systems programming language n C later evolved into a general-purpose.
PROGRAMMING FUNDAMENTALS INTRODUCTION TO PROGRAMMING. Computer Programming Concepts. Flowchart. Structured Programming Design. Implementation Documentation.
Introduction to Computer Programming Concepts M. Uyguroğlu R. Uyguroğlu.
Software Engineering Algorithms, Compilers, & Lifecycle.
Victoria Ibarra Mat:  Generally, Computer hardware is divided into four main functional areas. These are:  Input devices Input devices  Output.
Programming Logic and Design Seventh Edition Chapter 1 An Overview of Computers and Programming.
1 Chapter 1 Overview of Programming and Problem Solving Slides based on work by Sylvia Sorkin, Community College of Baltimore County - Essex Campus.
Cosc175 - lec11 Overview History Hardware Software Software Development Life Cycle Programming Languages Structured Programming Defining the Problem.
Chapter 1 Introduction 2nd Semester H
Introduction to Computers and C++ Programming
CSCI-235 Micro-Computer Applications
Computer Programming.
Key Ideas from day 1 slides
Chapter 2: Input, Processing, and Output
Chapter 1 Overview of Programming and Problem Solving
Chapter Topics 2.1 Designing a Program 2.2 Output, Input, and Variables 2.3 Variable Assignment and Calculations 2.4 Variable Declarations and Data Types.
Chapter 1: An Overview of Computers and Programming Languages
C++ Programming: From Problem Analysis to Program Design
Overview of Computers & Programming Languages
Unit# 8: Introduction to Computer Programming
Problem Solving Techniques
Computers: Hardware and Software
Chapter 1 Overview of Programming and Problem Solving
King Saud University College Of Applied Studies and Community Services CSC 1101 Computer Programming-1 Done By: Asmal Alosaimi Edited By: Fatimah Alakeel.
Chapter 1 Introduction(1.1)
What is Computer Programming?
King Saud University College Of Applied Studies and Community Services CSC 1101 Computer Programming-1 Done By: Asmal Alosaimi Edited By: Fatimah Alakeel.
Introduction to Computer Programming
Chapter 1: Preliminaries
Basic Concepts of Algorithm
Programming Logic and Design Eighth Edition
Presentation transcript:

Overview History Hardware Software Software Development Life Cycle Programming Languages Structured Programming Defining the Problem cosc175 - lec1

History of computers First Generation computers (1951-1958) vacuum tubes used large amounts of electricity, heat,large and expensive 1946 - ENIAC - computed trajectories for U.S. Army 1951 - UNIVAC - first commercially available computer, census Second Generation computers (1959-1963) transistors, less heat more reliable, less expensive Third Generation computers (1964-1970) integrated circuits less heat, higher speed cosc175 - lec1

History of computers Fourth Generation computers (1971-present) microprocessor => Personal Computer Apple II (1977), IBM PC (1981) ARPANET (1969) WWW (1991) Today - cheaper, smaller, better Fifth Generation computers (present and beyond) Artificial Intelligence http://www.history.com/shows/modern-marvels/videos/who-invented-the-computer#who-invented-the-computer cosc175 - lec1

Computer Components (Hardware) Peripherals Central Processing Unit ( CPU ) Input Device Control Unit Arithmetic Logic Unit Output Device Auxiliary Storage Device Memory Unit ( RAM & Registers ) cosc175 - lec1

Software Systems Software Programming Environment Application Software Operating System – software that controls overall operation of computer DOS, Windows, Unix, Linux Programming Environment Editor/Compiler/Interpreter/Linker/ Debugger Application Software cosc175 - lec1

Software Development Life Cycle Define the Problem (Analysis) Design the Solution (Algorithm) Code Solution (Program) Test and Debug Maintain & Document cosc175 - lec1

SDLC cosc175 - lec1

1. Analysis What? Defining the Problem Requirements Generate and document a clear problem statement Need to talk to all stakeholders Most common cause of software system failure traced to poor requirements gathering IPO cosc175 - lec1

2. Design HOW? Planning Algorithm – expansion of steps in the IPO diagram Flowchart Pseudocode cosc175 - lec1

netPay = payRate * hrsWorked Start Input payRate Input hrsWorked netPay = payRate * hrsWorked Output netPay Stop Pseudocode: Input payRate Input hrsWorked netPay = payRate * hrsWorked Output netPay cosc175 - lec1

Design tools pseudocode flowchart Can be done easily on word processor Implements structured design elements well Not visual No standard Standardized visual Difficult to modify requires special software to do on computer cosc175 - lec1

An Algorithm is . . . Step-by-step procedures for solving a problem in a finite amount of time. We are learning to write algorithms and the computer is simply a fast and flexible tool for implementing algorithms. An algorithm is an ordered set of instructions such that:      (1) There are a finite number of steps.      (2) It takes a finite amount of time to execute the steps.      (3) Each step is precise in meaning, and “doable.”      (4) It solves a general class of problems. cosc175 - lec1

3. Code the Solution Choose language Edit – create source program Compile - translate Syntax error – violate rules of programming language Link Create an executable program cosc175 - lec1

4. Test and Debug Test with variety of data Debugging: locating and correcting errors Logic error or bug - flaw in algorithm Run-time error e.g. Divide by zero Programming packages usually have debugger software to help programmer cosc175 - lec1

5. Maintain and Document Maintenance – Changing and maintaining existing programs Most coding is actually maintenance Documentation – sometimes done by technical writers cosc175 - lec1

A Tempting Shortcut? DEBUG REVISE REVISE DEBUG DEBUG REVISE Shortcut? CODE GOAL TEST THINKING CODE cosc175 - lec1

Programming Languages Definition: languages with strict grammar rules, symbols, and words used to construct a computer program Machine Languages is not portable, runs only on specific type of computer is made up of binary-coded instructions (strings of 0s and 1s) is the language that can be directly used by the computer Assembly Language Mnemonic codes are used for the op. codes instead of binary, EXA: LDA N, SUB B assembly language program must be translated into machine language before it can be executed, ‘assembler’. High Level Languages portable similar to natural language Requires compiler – translates high-level language into machine code FORTRAN, Visual BASIC, COBOL, Pascal, Ada, C++, Java most are standardized by ISO/ANSI cosc175 - lec1

cosc175 - lec1

Assembly Language cosc175 - lec1

C++ 1972 : C created by Dennis Ritchie at Bell Labs => 90% of UNIX is then written in C 1983: C++ - Bjarne Stroustrup at Bell Labs 1998 : ISO/ANSI standardization of C++ general-purpose programming language - many uses Flexible - few restrictions high demand for C,C++ programmers high level/low level Portable - leader in portability programmer oriented-"written by a professional programmer for professional programmers" cosc175 - lec1

1. Edit: write and type the program (source code) in C++ , Save as myProg.cpp 2: Compile: translate the source code into machine language => myprog.obj syntax error – violation of the rules of the language.  3: Link = bring in other code from libraries, bind the modules together, etc => myProg.exe 4: Run = run the executable file  Logic errors (bug) – An error caused by a mistake in programming instructions.A logic error causes a program to operate wrongly or produce incorrect data, but not to stop working cosc175 - lec1

Structured Programming Top-down Design– divide and conquer Modularity subprograms Stepwise refinement The Structure Theorem- Use 3 basic control structures to solve any problem Sequence Selection (if-then-else) Repetition (loop) cosc175 - lec1

SEQUENCE Display “Enter Name” Input name Display “Hello “ name cosc175 - lec1

SELECTION (branch) IF Condition THEN Statement1 ELSE Statement2 True . . . Statement2 False If (num > 0) Display “Positive” Else Display “Negative” cosc175 - lec1

LOOP (repetition) WHILE Condition DO Statement1 False . . . Condition True Statement cosc175 - lec1

SUBPROGRAM (function) . . . SUBPROGRAM1 SUBPROGRAM1 a meaningful collection of SEQUENCE, SELECTION, LOOP, SUBPROGRAM cosc175 - lec1

Computing Profession Ethics copy software only with permission from the copyright holder give credit to another programmer by name whenever using his/her code use computer resources only with permission guard the privacy of confidential data use software engineering principles to develop software free from errors cosc175 - lec1

As proposed by the project sponsor.                                                                        As proposed by the project sponsor. As specified in the project request. As designed by the senior analyst.                                                                        As produced by the programmers. As installed at the user's site. What the user wanted. cosc175 - lec1

Step 1:Analysis Define the Problem IPO 1. Input: Determine what is given =>nouns, adjectives 2. Output: Determine what is required 3. Processing: Determine the transformations needed,actions needed to produce the required output =>verbs, adverbs cosc175 - lec1

variables Input and output data Nouns Naming convention No spaces Meaningful names Usually begin with lowercase Examples: roomWidth, numPeople, studentName cosc175 - lec1

Example 1 Read three numbers, add them together and print the total. cosc175 - lec1

1. Identify inputs Underline nouns Read three numbers, add them together and print the total. Break up several values into separate variables cosc175 - lec1

1. Identify inputs fill Input column first Read three numbers, add them together and print the total. Break up several values into separate variables cosc175 - lec1

2. Identify outputs output column next Read three numbers, add them together and print the total. Break up several values into separate variables No verbs here cosc175 - lec1

3. Processing-Define processing steps by bolding verbs Read three numbers, add them together and print the total. cosc175 - lec1

Each verb is a process step Read three numbers, add them together and print the total. Hint: Usually follows: input, process, output cosc175 - lec1

Step 3: define list of actions Read three numbers, add them together and print the total. Hint: Use verbs these steps usually involve the input and output defined in step 1 cosc175 - lec1

Example 2: Write a program to prompt the operator for the maximum and minimum temperature readings on a particular day, accept those readings as integers, and calculate and display on the screen the average temperature. cosc175 - lec1

Example 2: Write a program to prompt the operator for the maximum and minimum temperature readings on a particular day, accept those readings as integers, and calculate and display on the screen the average temperature. cosc175 - lec1

Example 2: Write a program to prompt the operator for the maximum and minimum temperature readings on a particular day, accept those readings as integers, and calculate and display on the screen the average temperature. cosc175 - lec1