The document discusses different planning techniques for programming projects. It defines pseudo code as an informal way to outline a program's flow without details, flowcharts as diagrams representing processes through boxes and arrows, and pair programming as two programmers sharing a workstation with one writing code while the other reviews it. The conclusion restates that pseudo code outlines without syntax, flowcharts show steps and order through shapes and arrows, and pair programming involves two collaborating programmers.
2. TABLE CONTENT
I. Introduction
II. What is Pseudo code?
III. What is Flowchart?
IV. Pair programming?
V. Conclusion
VI. Question and Answer
3. I. INTRODUCTION
? Planning is Planning and programming is the first phase in
project development and involves analysis of conditions,
setting goals, identifying strategies or project candidates, and,
ultimately, establishing a program of policies and projects to
reach an agency's established goals.
? Management includes the activities of setting the strategy of
an organization and coordinating the efforts of its employees
(or of volunteers) to accomplish its objectives through the
application of available resources, such as financial, natural,
technological, and human resources.
4. II. WHAT IS PSEUDO CODE?
? Pseudo code is an informal way of programming description
that does not require any strict programming language syntax
or underlying technology considerations. It is used for creating
an outline or a rough draft of a program. Pseudo code
summarizes a program's flow, but excludes underlying details
6. III. WHAT IS FLOWCHART?
? Flowchart is a type of diagram that represents an algorithm,
workflow or process, showing the steps as boxes of various
kinds, and their order by connecting them with arrows.
8. IV. PAIR PROGRAMMING?
? Pair programming is an agile software development technique
in which two programmers work together at one workstation.
One, the driver, writes code while the other, the observer or
navigator, reviews each line of code as it is typed in. The two
programmers switch roles frequently.
9. V. CONCLUSION
1. Pseudo code is an informal way of programming description
that does not require any strict programming language syntax
or underlying technology considerations?
2. Flowchart is a type of diagram that represents an algorithm,
workflow or process, showing the steps as boxes of various
kinds, and their order by connecting them with arrows.
3. Pair programming is an agile software development technique
in which two programmers work together at one workstation