answers rated 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
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)
= - correct answer ✔✔ equal (to assign)
!= - correct answer ✔✔ not equal