This loop runs when a condition is true and stops when the condition becomes false
What is a while loop?
The variable used to represent whole numbers only
What is an int?
This keyword allows your program to make a decision between two paths
What is an if statement?
The first index of any list
What is 0?
This keyword defines a method that does not return a value
What is a void?
This loop is commonly used to count the exact number of times an action is needed
What is a for loop?
Float x=5; x+=x; The value of x becomes this
This keyword is used when none of the previous conditions were true
What is an else?
If int[] nums = {1,2,3}; then nums[2] equals this
The term for values passed through a function
What is a parameter?
If for(int i = 0; i < 3; i++) runs, this is how many times the loop executes
What is 3 times?
This term describes when two variables have the same name on different scopes and temporarily disables one
What is shadowing?
The operator != is used to do this
What is comparing two values for inequality?
This property returns the length of a list
What is length?
If a function call results in a value being set equal to the call, the function must have this
What is a return?
This keyword immediately stops any loop
What is a break?
In C#, this term makes variables viewable but not editable
What is readonly?
This logical operator returns true only if one or both conditions are true
What is ||?
Accessing an index that doesn’t exist in an array throws this exception
What is IndexOutOfRangeException?
This concept allows multiple methods to share the same name but have different parameters
What is overloading?
If a loop's condition can never become false, it is called this
What is an infinite loop?
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?
If int x = 5; then if(x > 10 || x == 5) evaluates to this boolean value
What is true?
This loop type is commonly used to iterate through every element of an array without manually using an index
What is a foreach loop?
This keyword allows an instant to be called without creating an instance of its class
What is static?