and Answers7
Variables can be used as the keys of a dictionary - ANSWERS-True
Keys can be added to the dictionary after its been created - ANSWERS-True
Lists can be composed of Dictionaries - ANSWERS-True
Dictionaries cannot be composed of lists - ANSWERS-False
Unlike Lists, Tuples are immutable, meaning Tuples cannot be changed after they are created -
ANSWERS-True
Tuples are composed of key/value pairs - ANSWERS-False
A while loop will always be executed at least once - ANSWERS-False
A while loop will execute once for each expression in the conditional - ANSWERS-False
A for loop will process a file sentence by sentence - ANSWERS-False
The open function consumes a string representing a path and returns a string of the file's
contents - ANSWERS-False
, You must import the json module before you can use the load function - ANSWERS-True
A reusable chunk of code with inputs and outputs - ANSWERS-Function
A name that can be associated with a value - ANSWERS-Variable
A control structure for performing actions on each element of a sequence - ANSWERS-For loop
A control structure for branching the execution of a program - ANSWERS-If statement
A data structure for mapping keys to values - ANSWERS-Dictionary
A data structure for storing elements in an ordered sequence - ANSWERS-List
A categorization of values of similar kinds that determines what you can do with the values -
ANSWERS-Type
A sequence of data stored in your computer's long term memory - ANSWERS-File
Specific instances of data written directly in source code - ANSWERS-Literal value
A type that represents textual data - ANSWERS-String
A collection of functions, classes, and variables available to be imported - ANSWERS-Module
A combination of data and functions that can encapsulate behavior into a new type - ANSWERS-
Class