Ninth Grade Algorithms and Web Design Guide
Ninth Grade Algorithms and Web Design Guide
Topics:
Algorithms
Web Design
There are different types of algorithms and these can be differentiated through flowcharts.
the graphical representation using figures of a problem and the pseudocode that is
written representation of the algorithm.
There are different types of algorithms, and they are categorized according to the complexity of problems:
Simple algorithm
Repetition Algorithm
Selection Algorithm
Condition Algorithm
These are the most recognized algorithms, but there are more. Let's take a look at a little bit of each of them.
but first mention what the operators used to solve problems of this nature are
mathematical or logical.
Relational operators
For the symbolism of the following Flowcharts according to algorithms, we must know the
symbols used and that you already know because we saw them in face-to-face classes.
Priority among Operators
Simple algorithms
Algorithmic step is used in a sequence of linear steps, that is to say when we need to
solve a linear problem where there is neither condition nor selection of a problem let's see
an example.
Pseudocode Flowchart
Start
Read n1, n2
sum=n1+n2
print sum
End