Courses Basic programming – part 02
Let's go on learning!
Conclude with the most advanced concepts.
10 - Conditional structures
What happens if you put one if-else structure inside the other? See the concept of nested if-else structures in this article.
Read interactive article11 - While statement: repetition structure
Learn all details of one of the most fantastic computer programming concepts: the while statement and the repetition structures.
Read interactive article12 - For statement: repetition structure
Advance your knowledge in repetition structures. Learn how the "for" command, the "continue" command and the "break" command work.
Read interactive article13 - Switch case command: selection structure
Learn all the details of the switch case command. The command that allows you to create selection structures in computer programming.
Read interactive article14 - Arrays
Learn now how to manipulate large data sets. With arrays, you have the ability to manipulate multiple variables as if they were a single one.
Read interactive article15 - Function: modularization
Learn the technique of modularizing algorithms. The functions make it possible to divide the source code into separate modules.
Read interactive article