McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 14 Programming and Languages.

Slides:



Advertisements
Similar presentations
Computers Are Your Future
Advertisements

Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Professor Michael J. Losacco CIS 1150 – Introduction to Computer Information Systems Programming and Languages Chapter 13.
Programming Creating programs that run on your PC
Systems Analysis and Design
Computers: Tools for an Information Age
Program Flow Charting How to tackle the beginning stage a program design.
Computers: Information Technology in Perspective By Long and Long Copyright 2002 Prentice Hall, Inc. Developing Business Information Systems Chapter 11.
Program Development and Programming Languages
Programming and Languages Chapter Competencies (Page 1 of 2) Describe the six steps of programming Discuss design tools including top-down design,
1 CIS 100 Winter 2005 Week 10 Lecture Dr. David Gadish.
McGraw-Hill Technology Education © 2006 by the McGraw-Hill Companies, Inc. All rights reserved CHAPTER PROGRAMMING AND LANGUAGES.
1414 CHAPTER PROGRAMMING AND LANGUAGES. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved Competencies Describe the six steps of programming.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Programming Concepts and Languages Chapter 12 – Computers: Understanding Technology, 3 rd edition 1November
Copyright 2003 Scott/Jones Publishing Brief Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall 1 Building Applications.
Computers Are Your Future Tenth Edition Chapter 11: Programming Languages & Program Development Copyright © 2009 Pearson Education, Inc. Publishing as.
Program development & programming languages Chapter 13.
Programming Languages: Telling the Computers What to Do Chapter 16.
Computers Are Your Future Eleventh Edition
Invitation to Computer Science 5 th Edition Chapter 9 Introduction to High-Level Language Programming.
Understanding Computers Ch. 131 Chapter 13 Program Development and Programming Languages.
Alexandria University Faculty of Science Computer Science Department Introduction to Programming (CS 102) C++ Programminhg.
CHAPTER ONE Problem Solving and the Object- Oriented Paradigm.
Technology in Action Alan Evans Kendall Martin Mary Anne Poatsy Twelfth Edition.
College of Computer and Information Science Chapter 14 Programming and Languages.
An Introduction to Programming with C++ Sixth Edition
Copyright Prentice Hall, Inc. 1 Computers: Information Technology in Perspective, 11e Larry Long and Nancy Long Chapter 11 Developing Business Information.
Programming Lifecycle
College of Computer and Information Science Chapter 14 Programming and Languages.
Computing Essentials 2014 Programming and Languages © 2014 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not.
CHAPTER ONE Problem Solving and the Object- Oriented Paradigm.
Problem Solving Techniques. Compiler n Is a computer program whose purpose is to take a description of a desired program coded in a programming language.
IXA 1234 : C++ PROGRAMMING CHAPTER 1. PROGRAMMING LANGUAGE Programming language is a computer program that can solve certain problem / task Keyword: Computer.
The Programming Process Define the problem* Make or buy software? Design the program * Code (write) the program Test (debug) the program Document the.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 4 Computer Software.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Programming Languages and the Programming Process.
Lecture 11: 10/1/2002CS149D Fall CS149D Elements of Computer Science Ayman Abdel-Hamid Department of Computer Science Old Dominion University Lecture.
Programming and Languages
Copyright © 2015 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
Structured Programming (4 Credits)
Chapter 14 Programming and Languages McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved.
How Are Computers Programmed? CPS120: Introduction to Computer Science Lecture 5.
Lecture (8) Programming Design Dr. Emad Elsharkawy Eng- Omar Salah Dr:Emad Elsharkawy 1 Saturday, 13 February 2016.
Problem-solving with Computers. 2Outline  Computer System  5 Steps for producing a computer program  Structured program and programming  3 types of.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Copyright © 2012 The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 14: Programming and Languages.
Alexandria University Faculty of Science Computer Science Department Introduction to Programming C++
PROGRAMMING. Computer Programs  A series of instructions to the computer  pre-written/packaged/off-the-shelf, or  custom made  There are 6 steps to.
PROGRAMMING FUNDAMENTALS INTRODUCTION TO PROGRAMMING. Computer Programming Concepts. Flowchart. Structured Programming Design. Implementation Documentation.
INTRODUCTION TO COMPUTER PROGRAMMING(IT-303) Basics.
How Computers Solve Problems Computers also use Algorithms to solve problems, and change data into information Computers can only perform one simple step.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 1 An Introduction to Visual Basic.NET and Program Design.
Introduction to Computer Programming Concepts M. Uyguroğlu R. Uyguroğlu.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
ICS 3UI - Introduction to Computer Science
Programming and Languages
CSCI-235 Micro-Computer Applications
Chapter 2- Visual Basic Schneider
Chapter 14: Programming and Languages
Programming Languages
Problem Solving Techniques
Programming & languages
Chapter 2- Visual Basic Schneider
The Programming Process
PROGRAMMING AND LANGUAGES
Programming and Languages
Presentation transcript:

McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 14 Programming and Languages

14-2 Competencies (Page 1 of 2) Describe the six steps of programming Discuss design tools including top-down design, pseudocode, flowcharts, and logic structures Describe program testing and the tools for finding and removing errors Page 4398

14-3 Competencies (Page 2 of 2) Describe CASE tools and object-oriented software development Explain the five generations of programming languages Page 398

14-4 Introduction In this chapter programming is described in two parts: (1) the steps in the programming process and (2) some of the programming languages available. Programming is part of Phase 4, systems development, in the systems life cycle. Competent end users need to understand the relationship between systems development and programming. Page 399

14-5 Programs and Programming What is a Program? A problem-solving procedure –A list of instructions Prewritten Custom-written Application software System software Page 400

14-6 What is Programming? Programming is software development Six step procedure –Program specification –Program design –Program code –Program test –Program documentation –Program maintenance Page 400

14-7 Step 1: Program Specification Page 401 Also called programs definition or program analysis 5 Step Process –Program ObjectivesProgram Objectives –Desired OutputDesired Output –Input Data –Processing Requirements –Document Program Specifications

14-8 Program Objectives Objectives are the problems that you are trying to solve Programming requires a clear statement of the problem that you are looking to address Return Page 401

14-9 Program Specification Steps Continued Page 402 Desired output Input Data Processing Requirements Program Specifications Document Example of statement of hours worked End user’s sketch of desired output

14-10 Step 2: Program Design Plan a solution Use structured programming techniques –Top-down program designTop-down program design –PseudocodePseudocode –FlowchartsFlowcharts –Logic structuresLogic structures Page 403

14-11 Top-Down Program Design Page 403 Return

14-12 Pseudocode Provides an outline of the logic and summary for a program Page 404 Return

14-13 Flowchart Page 404 Return Flowchart symbols Flowchart example

14-14 Logic Structures Sequence structure Selection structure Loop structure Page 404

14-15 Step 3: Program Code Writing the program or coding The good program –Reliable –Catch input errors –Understandable to other programmers –Structured programs best method –Use the most appropriate computer language Coding Page 407

14-16 Coding Formatting or presentation language Programming language Page 408

14-17 Step 4: Program Test Debugging –Testing –Eliminating errors Syntax errors Logic errors Testing process Page 422

14-18 Step 5: Program Documentation Written descriptions and procedures about a program Important for people who will use the program –Users –Operators –Programmers Page 411

14-19 Step 6: Program Maintenance 75% of total lifetime cost Error-free operations Effective program Two categories –Operations –Changing needs Page 412

14-20 Case Tools Computer-aided software engineering (CASE) –Automate development process Designing Coding Testing activities Page 414

14-21 Object-Oriented Software Development Focuses less on procedures, more on relationship between objects OOP: Object-oriented programming Object contains both the data and the processing operations Page 415

14-22 Generations of Programming Languages (Page 1 of 2) Occurring in “generations” or “levels” –Levels-Machine languages to natural languages There are five generations : –Lower level closer to machine language –Higher level closer to human-like language Page 415

st -- Machine languages 2 nd -- Assembly languages 3 rd -- High level procedural languages (3GL) 4 th -- Problem-Oriented languages (4GL) 5 th -- Natural Languages & Visual programming languages (5GL) Page 415 Generations of Programming Languages (Page 2 of 2)

14-24 Careers In IT Computer programmers create, test, and troubleshoot programs Responsibility may also include updating and repairing existing programs Employers seek individuals with a bachelors degree in computer science or information systems but there are positions available for those with a two-year degree Desired traits include patience, logical thinking, and attention to detail Computer Programmers can expect to earn $48K - $81K annually Page 418

14-25 A Look to the Future MI-Tech Synapse Solutions has created a system called MI-tech Understands word order and meaning Computer translates "wish list" into machine language Page 419

14-26 Discussion Questions (Page 1 of 2) Identify and discuss each of the six steps of programming. Describe CASE tools and OOP. How does CASE assist programmers? What is meant by “generation” in reference to programming languages? What is the difference between low-level and high-level languages? Page 428

14-27 Discussion Questions (Page 2 of 2) What is the difference between a compiler and an interpreter? What are logic structures? Describe the differences between the three logic types. Page 428