PRACTICE EXAM 2022/2023 DETAILED QUESTIONS AND ANSWERS
An________________ statement places the variable on the left-side of the = with the current value of
the right-side expression. (correct answers)assignment
An _______________________is a combination of items, like variables, literals, operators, and
parentheses, that evaluates to a value. (correct answers)expression
A name created by a programmer for an item like a variable or function is called an
__________________ which must follow certain rules to be valid. (correct answers)identifier
An ____________________ is evaluated using precedence rules that follow the evaluation order of
standard mathematics. (correct answers)expression
A variable declared as type____________ stores a __________-point number, which is a real number,
like 98.6, 0.0001, or -666.667. (correct answers)float
are typically used for values that are counted. (correct answers)Integer variables
are typically used for values that are measured or when dealing with fractions of countable items, such
as the average number of cars per household. (correct answers)Floating-point variables
typically have built-in functions to perform common operations needed by programmers, such as
performing mathematical operations like square root or raising a number to a power. (correct
answers)Programming languages
A ____________________ is a list of statements, (correct answers)function