Loops
Variables
Conditionals
Arrays
Functions
100

This loop runs when a condition is true and stops when the condition becomes false

What is a while loop?

100

The variable used to represent whole numbers only

What is an int?

100

This keyword allows your program to make a decision between two paths

What is an if statement?

100

The first index of any list

What is 0?

100

This keyword defines a method that does not return a value

What is a void?

200

This loop is commonly used to count the exact number of times an action is needed

What is a for loop?

200

Float x=5; x+=x; The value of x becomes this

What is 10?
200

This keyword is used when none of the previous conditions were true

What is an else?

200

If int[] nums = {1,2,3}; then nums[2] equals this

What is 3?
200

The term for values passed through a function

What is a parameter?

300

If for(int i = 0; i < 3; i++) runs, this is how many times the loop executes

What is 3 times?

300

This term describes when two variables have the same name on different scopes and temporarily disables one

What is shadowing?

300

The operator != is used to do this

What is comparing two values for inequality?

300

This property returns the length of a list

What is length?

300

If a function call results in a value being set equal to the call, the function must have this

What is a return?

400

This keyword immediately stops any loop

What is a break?

400

In C#, this term makes variables viewable but not editable

What is readonly?

400

This logical operator returns true only if one or both conditions are true

What is ||?

400

Accessing an index that doesn’t exist in an array throws this exception 

What is IndexOutOfRangeException?

400

This concept allows multiple methods to share the same name but have different parameters

What is overloading?

500

If a loop's condition can never become false, it is called this

What is an infinite loop?

500

When a variable is passed to a method normally and changes inside the method don’t affect the original, it is passed this way

What is by value?

500

If int x = 5; then if(x > 10 || x == 5) evaluates to this boolean value

What is true?

500

This loop type is commonly used to iterate through every element of an array without manually using an index

What is a foreach loop?

500

This keyword allows an instant to be called without creating an instance of its class

What is static?

M
e
n
u