You are on page 1of 16

What can

you tell
in the
picture
shown?
PROBLEM ANALYSIS ALGORITHM CODING

Process in Solving Syntax


Programming Problems LIBRARY Error

EXECUTIO
OUTPUT LINKER COMPILER
N
PROBLEM
first, you have to identify
the problem clearly and
defined.
ANALYSIS
next step, analyze the
problem to identify the
possible solution.
ALGORITHM
the solution will be written
through algorithm to itemize
the step-by-step instructions.
CODING
is the process where source code
or instructions are entered
through a programming language.
COMPILER
translates the entire
program with the help of
library.
COMPILER
library is a collection of
resources used by the
computer program.
COMPILER
when it encounters syntax
errors, the code will be
reviewed.
LINKER
however, if the compiling
is successful, the linker
will now process the code.
EXECUTION
performs to complete or
accomplish the set of
instructions.
OUTPUT
lastly, you will have the
desired outcome or
product.
Writing an
Algorithm
Pseudocode
Flowchart
Algorithm
• It is a step-by-step procedure to solve
problem.
• It helps in identifying the process and
essential variables to solve the problem.
• Programmers use it to see and determine
easily the errors.
Pseudocode
• Is a description of an algorithm using a
natural language which makes reading of
the program easier.
• It uses short English-like statements to
write codes for programs before creating
it in specific language.
Flowchart
• Is a diagram representing the logical
sequence in which a combination of
steps, procedure, or operations to be
performed.

You might also like