The different ways to communicate to a computer what you want it to do. Examples being Java, Python and C++, but not Spanish
What are coding languages
Brennon wants to make an integer. He writes:
x=11.112
What is False?
Use this statement when you want to say something, such as "Hello World"
What is print?
The basic two numbers used within Binary Code
What are 0s and 1s
Rei wants to make a string, he makes:
str="Rei is super smart"
What is true?
These statements are used to run different code when the condition is not true
What is else statements?
A special block of code that can be referenced in name to run the code it contains
What is a function?
Ken wants to make a variable, he writes:
first_name = 'Ken'
What is true?
Use these statements if you want to repeat things for a set number of times. Use these statements if you want to repeat things for a set number of times.
What are loops?
Any interaction from the user to the program. For instance, if Ariyan uses his mouse to move, or his keyboard to insult his teammates in the game "League of Legends"
What is an input?
DAILY DOUBLE:
This whole category is centered around true or false statements. What coding variable denotes true or false values?
What are Booleans?
Use these statements to run a block of code depending on whether a condition is true.
What is an If Statement?
Daily Double:
In Space Jam 2, Lebron James is tormented by the set of instructions that keeps the Warner Brothers Super computer running, which is also called
What is an Algorithm?
Enaya wants to make an Array, she writes:
[int myNumbers] = {13.4,B,) 74.2;
What is false?
These statements will run forever, until the condition is no longer true
ex: Ethan will be smart, until he takes AP Chemistry
What is While loops?