Objects
Variables
Functions
Defined Constants
100

The three main objects dealt with in this course.

What are Variables, Functions, and Defined Constants?

100

A type of variable that contains numbers that have decimal points.

What is a double/ float?

100

The purpose of a function.

What is running a specific chunk of code, often for repeatability or ease of understanding?

100

An example of a real-world defined constant.

*Varies*

ex: Value of gravity

200

This object stores a value that can be changed throughout the program.

What is a variable?

200

This symbol must be included after all declarations of variables.

What is ";"?

200

True or False: Functions can accept inputs.

What is True?

200

This format is how you name a constant.

What is writing in all uppercase?

300

True or False: In this course, some objects are allowed to be named a single character.

What is True.

300

True or False: This line of code is correct:

Int num;

What is True.

300

The number that Braden Smith wears.

What is number 3?

300

True or False: Defined constants can be declared anywhere throughout the program.

What is False?