<body scroll="no"><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener("load", function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <iframe src="http://www.blogger.com/navbar.g?targetBlogID=2723082626561370546&amp;blogName=T.L.E.+BlOg&amp;publishMode=PUBLISH_MODE_BLOGSPOT&amp;navbarType=BLUE&amp;layoutType=CLASSIC&amp;searchRoot=http%3A%2F%2Fschoolblog-arysa016.blogspot.com%2Fsearch&amp;blogLocale=en_US&amp;homepageUrl=http%3A%2F%2Fschoolblog-arysa016.blogspot.com%2F" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" height="30px" width="100%" id="navbar-iframe" allowtransparency="true" title="Blogger Navigation and Search"></iframe> <div></div>


TAG SCRIPT HERE !!

Links
YOUR LINKS HERE
Albino Black Sheep
The Best Site In The Universe
The Uber Site
Star Wars Fan Films
Archives
June 2009,
Credits
Blogger, Blogskins, Dreamweaver MX, Photoshop,
Image and Layout : s0|itude

Tuesday, June 30, 2009 . Flowcharting: The Things I Want To Learn

Learning flowcharting is not that easy, but it is surely a lot of fun. Of course, aside from basics, I also would like to know other symbols that I can use in flowcharting. I really want to experience programming not just in theoretical perspective but also I want to experience programming application. I really want to feel how it is to follow the cycle. But I know that we will arrive in that situation. I just really have to wait.

IN GENERAL, LEARNING FLOWCHARTING IS NOT JUST FOR FUN, IT ALSO DEVELOPS THE CRITICAL THINKING OF THE PROGRAMMERS.


slashed at 4:48 AM .

For living fifteen years of my life, this is my first time to encounter flowcharting and I'm so happy that I was one of the students who are given the chance to know more about this topic. To be honest, I also don't know the true meaning of algorithm and their difference and now that I know about it, I will use and share my learnings with others.

At first, I really find it difficult to study the concept of flowcharting. I was able to know some of the basic symbols and also the cycle of program development. Well, as some of my readers don't know everything about this, I will elaborate this so-called program development cycle and basic symbols.

> The Program Development Cycle

1. Review of Programing Specifications

  • In able to develop a program, you must analyze first the problem in able to arrive at the complete solution. You should also develop a list of problem variables and their relationship, and determine the required format in which the results should be displayed. Thus, we must take note of the following:
A. Input Specifications
B. Output Specifications
C. File Specification
D. Process Specification

2. Program Design

  • In this stage, we will now apply our learnings in flowcharting. As we all know flowcharting is a systematic diagram showing the step-by-step procedure in able to solve a problem. Before we solve a problem, we must arrive at a proper plan. Without making a design, this may lead to many errors.
3. Program Coding

  • Coding in programming is the process of writing the instructions in a programming language that implement the logic developed in the design phase of the program development cycle. There are five steps in program coding:
A. Review of the Program
B. Entering the Program
C. Saving the Program
D. Executing the Program
E. Interpreting/Compiling the Program

4. Program Testing

  • This stage is just like copyreading in writing. In this part, you will find the errors in your program so that you will still be able to arrive at a proper solution.
5. Program Documentation

  • Program documentation explains best how a certain program works in able for the program users to understand how they can utilize it. There are two levels of documentation:
A. Internal Documentation (within the program itself)
B. External Documentation (available to users of the program)

Now that I have finished elaborating the Program Development Cycle, I will show you some of the basic symbols used in flowcharting. (To further understand Program Development Cycle, Click Here.)


> FLOWCHARTING SYMBOLS

Symbol Symbol Name
(Alternate Shape Name)
Symbol Description
Terminator Flowchart Symbol Terminator
(Terminal Point, Oval)
Terminators show the start and stop points in a process. When used as a Start symbol, terminators depict a trigger action that sets the process flow into motion.
Process Flowchart Symbol Process Show a Process or action step. This is the most common symbol in both process flowcharts and business process maps.
Predefined Process Flowchart Symbol Predefined Process
(Subroutine)
A Predefined Process symbol is a marker for another process step or series of process flow steps that are formally defined elsewhere. This shape commonly depicts sub-processes (or subroutines in programming flowcharts). If the sub-process is considered "known" but not actually defined in a process procedure, work instruction, or some other process flowchart or documentation, then it is best not to use this symbol since it implies a formally defined process.
Alternate Process Flowchart Symbol Alternate Process As the shape name suggests, this flowchart symbol is used when the process flow step is an alternate to the normal process step. Flow lines into an alternate process flow step are typically dashed.
Decision Flowchart Symbol Decision Indicates a question or branch in the process flow. Typically, a Decision flowchart shape is used when there are 2 options (Yes/No, No/No-Go, etc.)
Data Flowchart Symbol Data
(I/O)
The Data flowchart shape indicates inputs to and outputs from a process. As such, the shape is more often referred to as an I/O shape than a Data shape.

Source: http://www.breezetree.com/article-excel-flowchart-shapes.htm
Author: Nicholas Hebb. Copyright 2006-2008.

(For more flowcharting symbols, Click Here.)

slashed at 3:49 AM .