Show:
Questions
Responses
Print
Variables
C# Syntax
Programming Concepts
Looping
GUI
100
A memory location that holds a value.
What is a variable
100
A "sibling" programming language of C#.
What is Java?
100
Assigns a value to a variable.
What is the = character?
100
int x=1; while (x<5) { x++; } Will execute this many times.
What is 4 times?
100
A control that a user presses to start an event.
What is a button?
200
A memory location who has a value that never changes
What is a constant?
200
The parent programming language of C#.
What is C++?
200
Compares to variables or expressions.
What is == symbol?
200
The variable that determines how many times a loop will execute.
What is a control variable?
200
A control that displays text output while not allowing input.
What is label?
300
A type of variable that holds counting numbers such as 1,2,3,-4,-5, etc.
What is an int?
300
Creating a text bases command prompt program.
What is a console application?
300
Increments a variables value by 1.
What is ++?
300
for loop while loop do while loop
What is 3 primary types of loops?
300
A control that displays text and allows user input.
What is a textbox?
400
A type of variable that holds values with decimal places such as 3.14.
What is a double or a decimal?
400
Ends a programming statement.
What is a ;?
400
Another way to add 3 to x instead of x=x+3.
What is x+=3 ?
400
A control variable that is not dependent on a count.
What is a sentinel ?
400
A control that allows users to select from a list of choices.
What is a radio button?
500
A type of variable that holds a true or false.
What is a bool?
500
Encloses a string literal.
What is a set of " "?
500
All programs have this method as an entry point to start execution.
What is main() ?
500
Initial value of a control variable Condition of control variable Change of the control variable
What are the three things that all loops have?
500
Each control has these attributes that further describe the control.
What are properties?