UPDATED ACTUAL Exam Questions and
CORRECT Answers
Variable - CORRECT ANSWER - A storage location identified by a name that can hold a
value.
Programming Expression - CORRECT ANSWER - A combination of variables, constants,
operators, and functions that evaluates to a value.
Identifier - CORRECT ANSWER - A name used to identify a variable, function, or other
entity in a program.
Valid Identifier - CORRECT ANSWER - An identifier that follows the rules of naming
conventions in programming.
Literal - CORRECT ANSWER - A fixed value that is represented directly in the code.
Operator - CORRECT ANSWER - A symbol that performs an operation on one or more
operands.
Precedence Rules - CORRECT ANSWER - The rules that determine the order in which
operations are performed in an expression.
Integer - CORRECT ANSWER - A whole number without a fractional component.
Float - CORRECT ANSWER - A number that has a decimal point, representing a real
number.
, Division of Integers - CORRECT ANSWER - Results in an integer quotient, discarding
any remainder.
Division of Integer and Float - CORRECT ANSWER - Results in a float, preserving the
decimal component.
Division by Zero - CORRECT ANSWER - Results in an undefined operation or error.
Type Conversion - CORRECT ANSWER - The process of converting a value from one
data type to another.
Modulo Operator - CORRECT ANSWER - An operator that returns the remainder of a
division operation.
Variable vs Constant - CORRECT ANSWER - A variable can change its value, while a
constant remains fixed.
Array - CORRECT ANSWER - A collection of elements identified by index or key.
Index Reference - CORRECT ANSWER - The position of an element within an array.
Branch - CORRECT ANSWER - A control structure that allows for conditional execution
of code.
Loop - CORRECT ANSWER - A control structure that repeats a block of code multiple
times.
If-Else Branch - CORRECT ANSWER - A control structure that executes one block of
code if a condition is true and another if it is false.