INMT 443 Final Exam 2026 Questions
and Answers Graded A+
mutable - Correct answer-value can be changed during processing
immutable or constant - Correct answer-the value cannot be changed during
procesing
list - Correct answer-order important, can change values, 0 or more elements, can
have same elements
tuple - Correct answer-order important, cannot change values, 0 or more elements,
can have same elements
dictionary - Correct answer-key value sets, order of items does not matter since
you do not use offset such as 0 or 1 to select an item, specify a unique key to
associate with each value
set - Correct answer-store unordered values, cannot have multiple occurrences of
the same element, you can perform set operations
define a list by putting..? - Correct answer-brackets
©COPYRIGHT 2026, ALL RIGHTS RESERVED 1
, define a tuple by using..? - Correct answer-parentheses
define a dictionary by placing..? - Correct answer-curly brackets {} around
comma-separated key: value pairs
dictionaries - Correct answer-can have multiple rows but only 2 columns
define a set by placing..? - Correct answer-curly brackets {} around one or more
comma-separated values
sequence - Correct answer-command lines outside decision or repetition blocks
that always run but run only once
decision - Correct answer-command lines inside a decision block that run zero or
one time (depending on outcome of logical test)
repetition - Correct answer-command lines inside a repetition block that run zero to
many or one to many times (depending on outcome of logical test)
< - Correct answer-strictly less than
<= - Correct answer-less than or equal
> - Correct answer-strictly greater than
>= - Correct answer-greater than or equal
== - Correct answer-equal (to compare)
©COPYRIGHT 2026, ALL RIGHTS RESERVED 2
and Answers Graded A+
mutable - Correct answer-value can be changed during processing
immutable or constant - Correct answer-the value cannot be changed during
procesing
list - Correct answer-order important, can change values, 0 or more elements, can
have same elements
tuple - Correct answer-order important, cannot change values, 0 or more elements,
can have same elements
dictionary - Correct answer-key value sets, order of items does not matter since
you do not use offset such as 0 or 1 to select an item, specify a unique key to
associate with each value
set - Correct answer-store unordered values, cannot have multiple occurrences of
the same element, you can perform set operations
define a list by putting..? - Correct answer-brackets
©COPYRIGHT 2026, ALL RIGHTS RESERVED 1
, define a tuple by using..? - Correct answer-parentheses
define a dictionary by placing..? - Correct answer-curly brackets {} around
comma-separated key: value pairs
dictionaries - Correct answer-can have multiple rows but only 2 columns
define a set by placing..? - Correct answer-curly brackets {} around one or more
comma-separated values
sequence - Correct answer-command lines outside decision or repetition blocks
that always run but run only once
decision - Correct answer-command lines inside a decision block that run zero or
one time (depending on outcome of logical test)
repetition - Correct answer-command lines inside a repetition block that run zero to
many or one to many times (depending on outcome of logical test)
< - Correct answer-strictly less than
<= - Correct answer-less than or equal
> - Correct answer-strictly greater than
>= - Correct answer-greater than or equal
== - Correct answer-equal (to compare)
©COPYRIGHT 2026, ALL RIGHTS RESERVED 2