Programming and languages (NHẬP môn điện TOÁN SLIDE)

27 8 0
Programming and languages (NHẬP môn điện TOÁN SLIDE)

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Chapter 14: Programming and Languages McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved Computing Essentials 2012: Making IT Work for You Competencies (Page of 2) • Define programming of and describe the six steps of programming • Discuss design tools including topdown design, pseudocode, flowcharts, and logic structures • Describe program testing and the tools for finding and removing errors McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-2 Computing Essentials 2012: Making IT Work for You Competencies (Page of 2) • Describe CASE tools and objectoriented software development • Explain the five generations of programming languages McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-3 Computing Essentials 2012: Making IT Work for You Introduction • In this chapter, you focus on Phase 4, Systems Development, of the systems life cycle and learn about the programming process and some of the programming languages that are available • Competent end users need to understand the relationship between systems development and programming McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-4 Computing Essentials 2012: Making IT Work for You Programs and Programming • What is a program? • A problem-solving procedure – A list of instructions McGraw-Hill • Prewritten • Custom-written • Application software • System software Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-5 Computing Essentials 2012: Making IT Work for You What is Programming? • Programming is software development • Six step procedure Program specification Program design Program code Program test Program documentation Program maintenance McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-6 Computing Essentials 2012: Making IT Work for You Step 1: Program Specification • Also called program definition or program analysis • Five steps to complete in the process McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-7 Computing Essentials 2012: Making IT Work for You Program Objectives in Step • Objectives are the problems that you are trying to solve • Programming requires a clear statement of the problem that you are looking to address McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-8 Computing Essentials 2012: Making IT Work for You • • • • Program Specification in Step Desired output Needed input data Required processing Documentation of program specifications End user’s sketch of desired output McGraw-Hill Example of input data Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-9 Computing Essentials 2012: Making IT Work for You Step 2: Program Design • Plan a solution using structured programming techniques – – – – McGraw-Hill Top-down design Pseudocode Flowcharts Logic structures Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-10 Computing Essentials 2012: Making IT Work for You Flowcharts • Graphically depict the sequence of steps required to solve a programming problem McGraw-Hill Flowchart Symbols Return Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-13 Computing Essentials 2012: Making IT Work for You Logic Structures • • • Concatenation structure Selection structure Repetition structure Concatenation McGraw-Hill Selection Repetition Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-14 Computing Essentials 2012: Making IT Work for You Step 3: Program Code • Writing the program or coding • Characteristics of a good program – Works reliably – Produces the correct output – Catches common input errors – Code is well-documented and understandable – Uses an appropriate computer language McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-15 Computing Essentials 2012: Making IT Work for You Coding in Step • Content-markup languages ã Programming languages McGraw-Hill Copyright â 2012 The McGraw-Hill Companies, Inc All rights reserved 14-16 Computing Essentials 2012: Making IT Work for You Step 4: Program Test • Debugging to test code and eliminate errors – – – McGraw-Hill Syntax errors Logic errors Testing process Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-17 Computing Essentials 2012: Making IT Work for You Step 5: Program Documentation • Written descriptions about a program • Important for people who will use and/or support the program – Users – Operators – Programmers McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-18 Computing Essentials 2012: Making IT Work for You Step 6: Program Maintenance • 75% of total lifetime cost • Ensures program is – – – Error-free Effective Efficient • Two activity categories – Operations – Changing needs McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-19 Computing Essentials 2012: Making IT Work for You Case Tools • Computer-aided software engineering (CASE) – Automates portions of the development process McGraw-Hill • Program design • Coding ã Testing Copyright â 2012 The McGraw-Hill Companies, Inc All rights reserved 14-20 Computing Essentials 2012: Making IT Work for You OOP Software Development • Object-oriented programming (OOP) • Focuses less on procedures, more on relationships between objects • Objects contain both the data and the processing operations needed to perform a task McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-21 Computing Essentials 2012: Making IT Work for You Generations of Programming Languages (Page of 2) • Occurring in “generations” or “levels” – Coding from machine languages to human or natural languages • There are five distinct generations – Lower level is closer to machine language – Higher level is closer to human-like language McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-22 Computing Essentials 2012: Making IT Work for You Generations of Programming Languages (Page of 2) • • • 1st Gen: Machine languages 2nd Gen: Assembly languages 3rd Gen: High level procedural languages (3GLs) • 4th Gen: Task-oriented languages (4GLs) • 5th Gen: Problem and Constraint languages (5GL) McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-23 Computing Essentials 2012: Making IT Work for You Careers In IT • Computer programmers create, test, and troubleshoot programs, in addition to updating and repairing programs • Employers seek individuals with – Bachelors degree in Computer Science or Information Systems, but also positions available for those with twoyear degrees – Desired traits include patience, logical thinking, and attention to detail • Computer Programmers can expect to earn $51,500 to $88,000 annually McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-24 Computing Essentials 2012: Making IT Work for You A Look to the Future • Using a Wish List to Create a Program – Synapse Solutions has created a system called MI-tech that understands word order and meaning in English – Computer translates "wish list" into machine language McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-25 Computing Essentials 2012: Making IT Work for You Open-Ended Questions (Page 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 lowlevel and high-level languages? McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-26 Computing Essentials 2012: Making IT Work for You Open-Ended Questions (Page of 2) • What is the difference between a compiler and an interpreter? • What are logic structures? Describe the differences between the three logic types McGraw-Hill Copyright © 2012 The McGraw-Hill Companies, Inc All rights reserved 14-27 ... cycle and learn about the programming process and some of the programming languages that are available • Competent end users need to understand the relationship between systems development and programming. .. Generations of Programming Languages (Page of 2) • • • 1st Gen: Machine languages 2nd Gen: Assembly languages 3rd Gen: High level procedural languages (3GLs) • 4th Gen: Task-oriented languages (4GLs)... Define programming of and describe the six steps of programming • Discuss design tools including topdown design, pseudocode, flowcharts, and logic structures • Describe program testing and the

Ngày đăng: 29/03/2021, 12:42

Mục lục

    Chapter 14: Programming and Languages

    Program Objectives in Step 1

    Program Specification in Step 1

    Generations of Programming Languages (Page 1 of 2)

    Generations of Programming Languages (Page 2 of 2)

    A Look to the Future

    Open-Ended Questions (Page 1 of 2)

    Open-Ended Questions (Page 2 of 2)

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan