...

/

Summary of the Program Control Structures

Summary of the Program Control Structures

Learn what we have covered in this chapter.

We'll cover the following...

Chapter summary

Sequence, selection, and iteration are the three pillars that programming rests upon. In this chapter, we’ve covered the latter two.

Selection is when we test values in variables using a condition that can be either true or false. If our test turns out to be true, we can let the program execute a block of code. ...