Selection Examples in CS Thinking
Start with the recap, study the fully worked examples, then use the practice problems to check your understanding of Selection.
This page combines explanation, solved examples, and follow-up practice so you can move from recognition to confident problem-solving in CS Thinking.
Concept Recap
Choosing which block of code to execute based on whether a condition is true or false. Selection allows programs to make decisions, following one path when a condition holds and a different path otherwise, using constructs like if, else-if, and else.
If this is true, do that path. If it is false, take a different path instead.
Read the full concept explanation →How to Use These Examples
- Read the first worked example with the solution open so the structure is clear.
- Try the practice problems before revealing each solution.
- Use the related concepts and background knowledge badges if you feel stuck.
What to Focus On
Core idea: Programs can choose between different execution paths depending on the current data values.
Common stuck point: Conditions must be unambiguous—what happens when temperature = 30?
Sense of Study hint: When writing a conditional, first identify the exact condition to test and make sure it evaluates to true or false. Then write the code for the 'true' branch, and consider whether you need an 'else' branch for the false case. Always check boundary values where the condition flips.
Worked Examples
Example 1
easyAnswer
First step
Full solution
- 2 Step 2: Check condition: is 15 >= 18? No.
- 3 Step 3: Execute the ELSE branch: output 'Minor'.
Example 2
mediumExample 3
mediumExample 4
hardExample 5
hardPractice Problems
Try these problems on your own first, then open the solution to compare your method.
Example 1
easyExample 2
mediumExample 3
easyExample 4
easyExample 5
easyExample 6
easyExample 7
easyExample 8
easyExample 9
easyExample 10
easyExample 11
mediumExample 12
mediumExample 13
mediumExample 14
mediumExample 15
mediumExample 16
mediumExample 17
mediumExample 18
mediumExample 19
mediumExample 20
challengeExample 21
challengeExample 22
challengeExample 23
easyExample 24
easyExample 25
easyExample 26
easyExample 27
easyExample 28
easyExample 29
mediumExample 30
mediumExample 31
mediumExample 32
mediumExample 33
mediumExample 34
mediumExample 35
mediumExample 36
mediumExample 37
mediumExample 38
mediumExample 39
mediumExample 40
hardExample 41
hardExample 42
hardExample 43
challengeRelated Concepts
Background Knowledge
These ideas may be useful before you work through the harder examples.