What is a variable?
This term refers to a named location in memory used to store data.
What is int?
This keyword declares an integer variable.
What is the modulus operator (%)?
This operator is used for finding the remainder of a division.
This loop type is best when the number of repetitions is unknown.
while
A loop that never stops because its condition is always true is called this.
infinite loop
What is a block?
This group of statements is enclosed within curly braces { }.
What is casting?
The term for converting one data type to another is this.
What is casting?
The term for converting one data type to another is this.
This loop executes at least once, no matter what.
do-while
What is a conditional loop?
This type of loop repeats until a specific condition becomes true.
What is main?
This required function marks the starting point of every C program.
What is const?
A memory location whose value cannot change is declared with this keyword.
What is formatting?
The process of controlling the decimal places in output is called this.
This loop structure is ideal for stepping through ranges of numbers.
for loop
What is continue?
This statement skips the rest of the current loop iteration.
What are comments?
This term refers to text in a program ignored by the compiler.
What is int?
This data type is used to store whole numbers.
What is pseudocode?
This term describes detailed written steps of an algorithm.
Flowcharts use diamonds to represent this type of step.
diamond
What is break?
This statement immediately stops a loop.