Variables
Data Types
Integer Data Types
Real Numbers
Strings and Characters
100

A name for a memory location where data can be stored and retrieved.

What are Variables?

100

A collection of data objects and a set of predefined operations on those objects.

What is Data Type?

100

A whole number, such as 3, 45, -453.

What is Integer?

100

Decimals

How does python print numbers?

100

This datatype is a class containing many methods allowing the manipulation of the contained data.

What is String?

200

Thinking about Variables first.

What do we need before writing programs?

200

This is a named segment of code that can be, among other things, a descriptor or a data type (not primitive).

What is a class?

200

This is the largest integer data type.

What is long?

200

Single digit can have the value 0 or 1.

What is Bit?

200

"hello world" is an example of this

What is a String literal?

300

By creating a variable.

How do get to a cell in memory?

300

A Boolean variable has the value True or False.

What is Boolean?

300

Group of 8 bits.

What is Byte?
300

[0,0,0]

What does 3*[0] return?

300

A single character, where a character can be any letter, digit, punctuation mark, or symbol that can be typed.

What is char?
400

A variable that can only be used in a specific sub/function.

What is a local variable?

400

char (Character); wchar_t (Wide character); int (Integer); float (Floating point); double (Double floating point); bool (Boolean); void (Valuless).

What are the 7 Data Types?

400

int, short, long, byte.

What is Integer Data Types?

400

x does not have a value until you give x a value.

What is the value of x?

400

Escape character that means to treat the next character as a literal.

What is /.

500

Converts to any value given to it, to a string and then formats it with the format given.

What is ToString?

500

A modifier alters the meaning of the base data type so that it more precisely fits the needs of the various situations.

What are data type modifiers?

500

Holds a date or time, stored as an integer which is often the number of milliseconds from the Unix epoch.

What is Date/Time?

500

A number with the value 1 to 9 (base 10)

What is Denary Number?

500

This is the method of checking equality between strings.

What is .equals()?

M
e
n
u