WGU D335 EXAM | INTRODUCTION TO
PROGRAMMING IN PYTHON EXAM
STUDYGUIDE RATED A+ | 2025/2026 GUIDE
Open-source - Correct Answer - programs that are made freely available
and may be redistributed and modified
Assignment Statement - Correct Answer - A programming statement that
assigns a value to a variable, such as x=5.
Incrementing the variable - Correct Answer - Increasing a variable's
value by 1, as in x = x + 1
Identifier - Correct Answer - Also called a name, is a sequence of letters
(a-z, A-Z), underscores ( _ ), and digits (0-9), and must start with a letter
or an underscore
Reserved Words / Keywords - Correct Answer - Words that are a part of
the programming language and cannot be used as a programmer-
defined name
Object - Correct Answer - represents a value in a program and is
automatically created by the interpreter when executing a line of code
, Garbage Collection - Correct Answer - Automatic process by the
interpreter of deleting unused objects that helps keep the memory of the
computer less utilized
Name Binding - Correct Answer - The process of associating names with
interpreter objects
Properties of objects - Correct Answer - Value, Type, Identity
Value of an object - Correct Answer - The data associated with the
object
Type of an object - Correct Answer - Determines the object's supported
behavior (such as integer or string)
Identity of an object - Correct Answer - A unique numeric identifier.
Normally refers to the memory address where the object is stored (such
as 1, 5, 505534)
id() - Correct Answer - Built in Python function that gives the value of an
object's identity
PROGRAMMING IN PYTHON EXAM
STUDYGUIDE RATED A+ | 2025/2026 GUIDE
Open-source - Correct Answer - programs that are made freely available
and may be redistributed and modified
Assignment Statement - Correct Answer - A programming statement that
assigns a value to a variable, such as x=5.
Incrementing the variable - Correct Answer - Increasing a variable's
value by 1, as in x = x + 1
Identifier - Correct Answer - Also called a name, is a sequence of letters
(a-z, A-Z), underscores ( _ ), and digits (0-9), and must start with a letter
or an underscore
Reserved Words / Keywords - Correct Answer - Words that are a part of
the programming language and cannot be used as a programmer-
defined name
Object - Correct Answer - represents a value in a program and is
automatically created by the interpreter when executing a line of code
, Garbage Collection - Correct Answer - Automatic process by the
interpreter of deleting unused objects that helps keep the memory of the
computer less utilized
Name Binding - Correct Answer - The process of associating names with
interpreter objects
Properties of objects - Correct Answer - Value, Type, Identity
Value of an object - Correct Answer - The data associated with the
object
Type of an object - Correct Answer - Determines the object's supported
behavior (such as integer or string)
Identity of an object - Correct Answer - A unique numeric identifier.
Normally refers to the memory address where the object is stored (such
as 1, 5, 505534)
id() - Correct Answer - Built in Python function that gives the value of an
object's identity