Decision if <Condition is true> <TRUE BRANCH> else <FALSE BRANCH> start the program Find the last 10 people that entered the building If no one has entered the building today Terminate program otherwise email each of the individuals and … [Read more...] about How to represent Decision in Pseudo Code
Represent Terminators in Pseudo Code
How to Flow in Pseudo Code
Flow: In most programming language the flow of a program is from top to bottom. With pseudo-code, you would read it just like you would read a paragraph from left to right. … [Read more...] about How to Flow in Pseudo Code
Represent Process in Pseudo Code
Process: In the example below, you can see that we are working with a three-variable program. The three variables are x,y,z and an addition operations is being executed on them. x = 30 y = x + 1 z = x + y <More Instructions> <More … [Read more...] about Represent Process in Pseudo Code
Introduction to Pseudo Code
Pseudo Code Pseudo code is another form that can help us represent what a program is doing at a high-level. The main purpose of pseudo code is to have a human-readable representation of your program. Remember pseudo code is NOT a programming language. You will … [Read more...] about Introduction to Pseudo Code
Representing a Data in Flowcharts
I/O | Input or Output: Represents data input or output from a process. … [Read more...] about Representing a Data in Flowcharts
Representing a Terminators in Flowcharts
Terminator: Represents the start, end, or return section. … [Read more...] about Representing a Terminators in Flowcharts
Representing a flow in Flowcharts
Flow: Indicates the direction of a flow. … [Read more...] about Representing a flow in Flowcharts
Representing a process in Flowcharts
Process: Denotes a process or an action to be taken. … [Read more...] about Representing a process in Flowcharts
Introduction to Flowcharts
Now that we have a clear understanding of the building blocks of programming, it's time to use a tool to express those ideas. Flowcharts help us to do exactly that! Flowcharts are used in many professions and different symbols can have a different meaning depending … [Read more...] about Introduction to Flowcharts