The three main objects dealt with in this course.
What are Variables, Functions, and Defined Constants?
A type of variable that contains numbers that have decimal points.
What is a double/ float?
The purpose of a function.
What is running a specific chunk of code, often for repeatability or ease of understanding?
An example of a real-world defined constant.
*Varies*
ex: Value of gravity
This object stores a value that can be changed throughout the program.
What is a variable?
This symbol must be included after all declarations of variables.
What is ";"?
True or False: Functions can accept inputs.
What is True?
This format is how you name a constant.
What is writing in all uppercase?
True or False: In this course, some objects are allowed to be named a single character.
What is True.
True or False: This line of code is correct:
Int num;
What is True.
The number that Braden Smith wears.
What is number 3?
True or False: Defined constants can be declared anywhere throughout the program.
What is False?