Parameters & Arguments
Loops
Methods / Functions
Condition
100

What is the term for values passed into a method?

Arguments

100

What loop repeats a block of code while a condition is true?

while loop

100

What keyword is used to define a function that returns nothing?

void

100

What statement is used to make a decision based on a condition?

if statement

200

What is the term for the variables defined in the method signature?

Parameters

200

What loop is typically used when the number of iterations is known?

for loop

200

What keyword is used to return a value from a method?

return

200

What keyword executes code if no other condition is met in an if-else block?

else

300

How do you pass an argument by reference?

Using ref or out

300

keyword can stop the execution of a loop permanently.

break

300

What is it called when a method has the same name but different parameters?

Method overloading

300

What keyword is used to make a decision based on a condition?

if

400

What does the return type of a method that gives back a value depends on

data type

400

What keyword is used to declare a constant in C#?

const