WEB-APP Unplugged Activities

Essential Question:
Why is logic and conditional thinking important to know when you want to create a mobile app?

Objective:
Students will —
• Gain experience determining the outcome (true or false) of conditionals
• Evaluate logical statements to determine which branch of a program to follow

VOCABULARY:

  • Conditional—A statement that is either true or false depending on the situation
  • If Statement—A line that determines whether or not you run a certain chunk of code
  • Else—Another way of saying “Otherwise”
  • Function—A piece of code that can be called over and over
  • Increment—To add a certain amount (often 1), once or many times
  • Decrement—To subtract a certain amount (often 1), once or many times
  • Nested Statements—A statement inside another statement

If then Statements