17

REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

Embed Size (px)

Citation preview

Page 1: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE
Page 2: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

REBUS

Page 3: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

CROSS ROADS

Page 4: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

HITTING BELOW THE BELT

Page 5: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

FOR INSTANCE

Page 6: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

READY FOR ANYTHING

Page 7: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

THREE BLIND MICE

Page 8: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE
Page 9: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

ESSENTIAL QUESTIONS

– What is the importance of creating a flowchart before moving to the program coding?

– How is flowchart different from pseudocodes or decision tables?

– What will happen if a neophyte programmer will mismatch the shapes and symbols?

Page 10: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

• graphical or symbolic representation of a process.

• each step in the process is represented by a different symbol and contains a short description of the process step.

• linked together with arrows showing the process flow direction.

FLOWCHART

Page 11: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

DIFFERENCE

FLOWCHART PSEUDOCODESis a symbolic

representation of code, using box,

shapes and arrows.

Is a sentence-like representation of a

piece of code.

Page 12: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

READ name, hourly rate, hours worked, deductionsCalculate: Gross pay=hourly rate times hours workedCalculate: Net Pay= Gross pay minus deductionsWRITE name, Gross pay, Net pay

READ name, hourly rate, hours worked, deductionsCalculate: Gross pay=hourly rate times hours workedCalculate: Net Pay= Gross pay minus deductionsWRITE name, Gross pay, Net pay

PSEUDOCODEPSEUDOCODE

Page 13: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

• SYSTEM FLOWCHART-broad flow of work, documents and

operations.

• PROGRAM FLOWCHART- solution to a given problem for

which the program is written.

TYPES

Page 14: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

ANSI STANDARD FLOWCHART SYMBOLS

Page 15: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

FLOWCHART SYMBOLS

click

Page 16: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

REFLECTION

• Where can you usually find or see a flowchart?

• What is the use of flowchart in those places?

Page 17: REBUS CROSS ROADS HITTING BELOW THE BELT FOR INSTANCE

ASSIGNMENT

Write in your noteboook the definition of Sequence Control Structure and give at least one sample flowchart for the said structure.