Skip to content

Latest commit

 

History

History
 
 

10-programming-expressions

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Programming Expressions

Learning Goals

  • Vocabulary: expressions, relational operators, logical operators, truth tables, conditional statements, control flow
  • To understand the purpose and need for comments
  • To know the syntax for creating a programming expression and the order of evaluation
  • To evaluate the result of a relational operator
  • To create and explain the truth table for logical operators
  • To write conditional statements in order to create branches in program execution
  • To understand when a conditional statement will execute the statements inside it (and when it will not)
  • To be able to describe the control flow of a program

Resources

  1. Notes: Operators
  2. Notes: Conditionals
  3. Assignment: Control Flow
  4. Assignment: Conditional Worksheet
  5. Assignment: Candy Machine