Foundations - D278 Question and
answers rated A+ 2025/2026
A variable ___ declares a new variable, specifying the variable's name and
type. - correct answer ✔A variable declaration declares a new variable,
specifying the variable's name and type.
An ___ ___ assigns the variable on the left-side of the = with the current value
of the right-side expression. - correct answer ✔An assignment statement
assigns the variable on the left-side of the = with the current value of the right-
side expression.
An ___ is a combination of items, like variables, literals, operators, and
parentheses, that evaluates to a value. - correct answer ✔An expression is a
combination of items, like variables, literals, operators, and parentheses, that
evaluates to a value.
A name created by a programmer for an item like a variable or function is
called an ___ - correct answer ✔A name created by a programmer for an
item like a variable or function is called an identifier
An expression is evaluated using ___ rules that follow the evaluation order of
standard mathematics. - correct answer ✔An expression is evaluated using
precedence rules that follow the evaluation order of standard mathematics.
___ ___ is the process of writing and and testing a small amount of code -
correct answer ✔Incremental development is the process of writing and and
testing a small amount of code