0% found this document useful (0 votes)
2 views2 pages

Ninth Grade Algorithms and Web Design Guide

The document serves as a guide for ninth-grade students on algorithms and web design, emphasizing the importance of algorithms in problem-solving. It defines algorithms as ordered steps to solve problems and categorizes them into types such as simple, repetition, selection, and condition algorithms. Additionally, it discusses relational operators used in algorithms and provides examples of pseudocode and flowcharts for a simple algorithm.

Translated by

ScribdTranslations
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Ninth Grade Algorithms and Web Design Guide

The document serves as a guide for ninth-grade students on algorithms and web design, emphasizing the importance of algorithms in problem-solving. It defines algorithms as ordered steps to solve problems and categorizes them into types such as simple, repetition, selection, and condition algorithms. Additionally, it discusses relational operators used in algorithms and provides examples of pseudocode and flowcharts for a simple algorithm.

Translated by

ScribdTranslations
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Ninth Grade Guide

Topics:
Algorithms
Web Design

When solving problems of different kinds, a methodology is often followed to


achieving such a purpose. This methodology is characterized by a series of actions or
situations carried out. Each of them has the purpose of achieving an objective.
specifically and collectively achieve a general objective. Consequently, these actions are
they can be conceived as algorithms, which makes it important to know the definition,
characteristics and importance of algorithms in various areas of life
cotdiana. In the same way, algorithms are a vital tool for solving
problems through computer.

Algorithm: Set of ordered steps or procedures to solve a problem.

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

Greater than Less than 3) Greater than or equal to

Less than or equal to <= 5) Equal= 6) Difference < > !=

They are used to compare two or more values.


Its result produces values such as true and false.
They have the same level of priority.

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

They always run from left to right in case of


have two or more operators at the same level of
priority.

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

You might also like