Intro to Coding
Learn the building blocks of coding, including different use cases, syntaxes, variables, loops, conditionals, functions, data types.
-
-
Driving Questions
How does computer coding work? History of coding, different languages used, overview of computer programming.
How does computer coding work? History of coding, different languages used, overview of computer programming.
-
Computational Thinking
Organize thoughts and ideas so as to better communicate with technology using concepts like: decomposition, abstraction, pattern recognition, and algorithmic thinking.
Organize thoughts and ideas so as to better communicate with technology using concepts like: decomposition, abstraction, pattern recognition, and algorithmic thinking.
-
-
-
-
Data Types
Most programming languages support various types of data, including integer, real, character or string, and Boolean
Most programming languages support various types of data, including integer, real, character or string, and Boolean
-
Variables & Constants
A variable is a named data item whose value can change during the course of program execution while a constant is a named data item with a predefined value.
A variable is a named data item whose value can change during the course of program execution while a constant is a named data item with a predefined value.
-
Conditional Statements
Allows a program to execute one block of code if a condition is true, and a different block of code if the condition is false
Allows a program to execute one block of code if a condition is true, and a different block of code if the condition is false
-
Used to repeat a part of code until the desired process is complete.
-
A sequence of commands that can be reused together later in a program.
-
-
-
-