Basics
Datatypes
Operators
Loops
statements
100

What is a variable?

This term refers to a named location in memory used to store data.

100

What is int?

This keyword declares an integer variable.

100

What is the modulus operator (%)?

This operator is used for finding the remainder of a division.

100

This loop type is best when the number of repetitions is unknown.

 while

100

A loop that never stops because its condition is always true is called this.

infinite loop

200

What is a block?

This group of statements is enclosed within curly braces { }.

200

What is casting?

The term for converting one data type to another is this.
 

200

What is casting?

The term for converting one data type to another is this.

200

This loop executes at least once, no matter what.

do-while

200

What is a conditional loop?

This type of loop repeats until a specific condition becomes true.

300

What is main?

This required function marks the starting point of every C program.

300

What is const?

A memory location whose value cannot change is declared with this keyword.
 

300

What is formatting?

The process of controlling the decimal places in output is called this.
 

300

This loop structure is ideal for stepping through ranges of numbers.

for loop

300

What is continue?

This statement skips the rest of the current loop iteration.
 

400

What are comments?


This term refers to text in a program ignored by the compiler.


400

What is int?

This data type is used to store whole numbers.


400

What is pseudocode?

This term describes detailed written steps of an algorithm.
 

400

Flowcharts use diamonds to represent this type of step.

diamond

400

What is break?

This statement immediately stops a loop.

M
e
n
u