System Analysis and Design

Slides:



Advertisements
Similar presentations
Nested if-else Statements.  Should be indented to make the logic clear.  Nested statement executed only when the branch it is in is executed. For example,
Advertisements

Documenting an AIS II Flowcharts Documenting AIS II.
Selection Flow Charts If statements. Flow of Control The flow of control is a concept we’ve already encountered. The concept of control relates to the.
Accounting Information Systems 9th Edition
Flow Control Analysis & Design Tool: Flowcharts
© 2006 Prentice Hall Business Publishing Accounting Information Systems, 10/e Romney/Steinbart1 of 138 DOCUMENT FLOWCHARTS A document flowchart shows the.
Documentation Letts Study Guide Information Systems - IT Chapter 19.
©2003 Prentice Hall Business Publishing, Accounting Information Systems, 9/e, Romney/Steinbart 6-1 Systems Development and Documentation Techniques.
Fundamentals of Algorithms MCS - 2 Lecture # 4
Dr. Gary Stewardson, Raymond Boyles Hello again, Sparkey here. Slippery and I will help you explore how to create a program that simulates outputs on a.
Flow Chart.
Steps of a Design Brief V Obtained from workshop-July, 2014-in Guildford County.
Chapter 2- Visual Basic Schneider
PRESENTED BY NASIR ABBAS. FLOW CHART CONTENTS What is a flow chart? Flow chart symbols.
Developing logic (Examples on algorithm and flowchart)
Flow Charts. Thinking Creatively Flow Charts START END Is A==6? No A = 1 Yes Print A A = A + 1.
The Program Design Phases
Process Modeling and Data Flow Diagrams
Review Algorithm Analysis Problem Solving Space Complexity
Algorithm & Flowchart.
Chapter 1 Pseudocode & Flowcharts
Data Flow Diagrams. What the ***** is a data flow diagram for? They look at data without considering the equipment needed. They are the first stage of.
Chapter 12 Describing Information Systems.
Flowcharts! January 13, 2005 These are today’s notes! Do you think we will get more snow?
End Show Writing a computer program involves performing the following tasks. 1. Understanding the problem 2. Developing an Algorithm for the problem 3.
Flowcharts.
Program Planning and Design. What is Program Planning and Design? Program planning and design is simply knowing what you want to do and how you want to.
PROGRAM DEVELOPMENT CYCLE. Problem Statement: Problem Statement help diagnose the situation so that your focus is on the problem, helpful tools at this.
1 Program Planning and Design Important stages before actual program is written.
AVERY TATE SHAPES. SQUARE CIRCLE TRIANGLE OVAL.
Advanced Accounting Information Systems
Selection Flow Charts If statements. Flow of Control The flow of control is a concept with which we’re already familiar. The concept of control relates.
HNC Flow Chart 1 IT Systems Analysis and Design SSADM – Design.
PROBLEM SOLVING. REDBLUE GREENPINK ORANGEYELLOW Exit.
Flow Charts. Flow charts A flowchart is a schematic (idea of doing something) representation of a process. They are commonly used in Computer Science.
Problem Solving Flowcharts. Flowcharts Introduction  Flowcharts allow us to create a visual representation of a solution to a problem DRAW  With flowcharts,
Systems Development and Documentation Techniques BAB 3 PERTEMUAN SIA-UMBY.
Basics of Computer A Computer is Electronic device that can
Systems Documentation Techniques
GC101 Introduction to computers and programs
Introduction to Flowcharting
Flowchart Symbols Terminal Process Input/ Output Decision
Chapter One Problem Solving
8.3 Control Quality The process of monitoring and recording results of executing quality activities to assess performance and recommend necessary change.
Presentation of Flowchart
7/14/16 CTC-RI IBH Pilot Quarterly Meeting
Programming Flowcharts
Computer Programming Flowchart.
Numbering System TODAY AND TOMORROW 11th Edition
What is a Flow Chart ? An organized combination of shapes, lines, and text that graphically illustrates a process or structure A pictorial representation.
Activity Diagrams Activity diagrams describe the workflow behavior of a system.  The diagrams describe the state of activities by showing the sequence.
ALGORITHMS AND FLOWCHARTS
Chapter 1 Pseudocode & Flowcharts
Basic Shapes ©
Business Application Development
Structured Program Design
ALGORITHMS AND FLOWCHARTS
Let’s play with shapes! play.
Chapter 1 Pseudocode & Flowcharts
Structure Charts Agenda: What are Structure Charts
Chapter 2- Visual Basic Schneider
ME 142 Engineering Computation I
Shapes.
PROCESS ANALYSIS CSSR DIAMONDS represent decision points, e.g., yes-
Introduction to Programming
Start or end of algorithm: Action/process step:
Chapter 4: documenting information systems
Flowcharts Some Rules.
Chapter 1 Pseudocode & Flowcharts
Introduction to Flowcharts
Presentation transcript:

System Analysis and Design IE352 System Analysis and Design Session V

System Engineering Tools System Flow Charts Organization Analysis Organization/Personnel Assessment Engineering Management

System Engineering Tools System Flow Charts

Flowcharts was introduced by Frank Gilbreth to members of the American Society of Mechanical Engineers (ASME) in 1921 In the early 1930s, this tool was started to be embedded into industrial engineering curricula In 1947, ASME adopted a symbol set derived from Gilbreth's original work as the "ASME Standard: Operation and Flow Process Charts Later on, 1970 adapted and used

System Flow Charts Processes flowcharts Work flowcharts Computer flowcharts

Process Flow Chart SYMBOL NAME DESCRIPTION Oval The start or end of a processes Rectangular Process or action step Represents waiting period that is part of a process Diamond Shape When decision is needed, e.g. Yes/No or True/False.

Process Flow Chart SYMBOL NAME DESCRIPTION Solid Thin Arrow Direction of the processes in sequence Solid Line Physical data transfer (editing, recording or writing down) Dotted Line Data Transfer (checking, comparing or reading) Solid/Hollow Thick Arrow Physical Transfer

Process Flow Chart SYMBOL NAME DESCRIPTION Circle Operation Sided Rectangle Files Upward Triangle Open file Downward Triangle Close file

Examples Start File 2 File 1 Receive the request Valid Stamp No Yes Valid Stamp “Rejected” Sign it Open Open File it Record it Close Send to Accounting End Close

System Flow Charts Processes flowcharts Work flowcharts Computer flowcharts

Flow Process Chart SYMBOL NAME DESCRIPTION Circle Operation Arrow Movement Diamond Check Delay Downward Triangle Storage

Examples

System Flow Charts Processes flowcharts Work flowcharts Computer flowcharts

Computer Flow Chart SYMBOL NAME DESCRIPTION Oval The start or end of a processes Semi- rectangular Inputs / Outputs Rectangular Internal processes Diamond Shape When decision is needed, e.g. Yes/No or True/False.

Computer Flow Chart SYMBOL NAME DESCRIPTION Solid Thin Arrow Direction of the processes in sequence Document Single Document Documents Created/Revised Copies Bridge Used to avoid intersections between direction lines/arrows

Calculate Final = (G1+G2+G3..) Examples Start Read class grade n=1 Calculate Final = (G1+G2+G3..) No Yes Final n > X Final n = “FAIL” Final n = “PASS” n = n+1 No n = N Yes Print “Class Result” End