Search⌘ K

Introduction to the Basic Building Blocks of a Computer Program

Explore the fundamental concept of sequence in programming and learn how to break down tasks into smaller steps. Understand what statements are, how to separate them, format code for readability, and use comments to document your code.

We'll cover the following...

Overview

When it comes to programming, the most fundamental concept is the sequence. The sequence indicates what we do and when we do it, one after the other. However, when we take a closer look, we find that there’s more to this—in this chapter, we’ll learn what that ...