Chapter 1/2
Chapter 3
Chapter 4
Chapter 5
Mixed
100

As opposed to String, int, double and boolean are known as these data types.

What is primitive?

100

This data type stores the values true or false.

What is boolean?

100

Your CSA teacher's first name.

What is Sarah?

100

This "blueprint" defines a type and is used to define what all objects of that type can do. 

What is a class?

100

Where execution starts in a Java program.

What is the main method?

200

This commonly used data type are objects of a class, used for storing sequences of characters.

What is a String?

200

Often called modulo, the correct name for the % operator in Java is...

What is remainder operator?

200

A loop that never ends.

What is an infinite loop?

200

 Defines behavior - what an object can do.

What is a method?

200

Another term for a compile time error.

What is a syntax error?

300

A name associated with a memory location in a computer, where you can store a value.

What is a variable?

300

This law describes how to distribute negation over a complex conditional.

What is DeMorgan's?

300

A loop that repeats while a Boolean expression is true.

What is a while loop?

300

A named block of code used to initialize fields in a newly created object.

What is a constructor?

300

Private instance variables define the ____of an object of a certain class.

What is attributes?

400

This static method of the math class returns a value between 0 and 0.9999999999......

What is Math.random()?

400
The general name for symbols like < , >, <= and ==.

What are relational operators?

400

A loop that has a header with 3 optional parts: initialization, condition, and change

What is a "for loop"

400

 Software that translates the Java source code (ends in .java) into the Java class file (ends in .class).

What is a compiler?

400

This term describes where a variables value can be accessed.

What is scope?

500

Integer and Double are examples of what type of class?

What are Wrapper classes?

500

This phrase describes the fact that if the first part of an AND conditional is false, the second part is not checked.

What is short circuit evaluation?

500

A run-time error that occurs when you try to access past the end of a string or list in a loop.

What is an out-of-bounds error?

500

A keyword that can be used to distinguish the object currently running the code from other objects of that class.

What is "this"

500

If a variable or method belongs to the class, rather than individual objects of that class, they are declared using the keyword _____.

What is static?

M
e
n
u