For the toolbar, press ALT+F10 (PC) or ALT+FN+F10 (Mac). Content Editor
Use arrow keys to select functions
4 points
Question 11
Used to define the scope in Python
4 points
Question 12
This programing element begins with the keyword def.
variables
functions
keywords
lists
4 points
Question 13
When does python limit access to global variables/objects from within a scope?
When there is the presence of a newly created local variable with the same name as a global variable.
When there is the presence of a newly created local variable with a different name than the global variable.
When there are no new variables.
When there is the presence of any newly created variable.
4 points
Question 14
Used to pass one or multiple values into a function for processing.
Global variable
Code block
Return
Parameter list
4 points
Question 15
4 points
Question 16
One of the three programming structures that will choose one of two paths of execution based on the results of a true/false question:
Sequence
Iteration
Loop
Decision
4 points
Question 17
4 points
Question 18
Which is the following is true about structured programming
Each structure should have one entry point, but can have multiple exit points
Each structure can have multiple entry points, but only one exit point
Each structure has no limit on the number of the entry points and exit points
Each structure should have one entry point and one exit point
4 points
Question 19
____ within a list are identified by an index number, placed within square brackets after the name of the list. For example:
Decisions
Items
Elements
Code
4 points
Question 20
What does the following comparison operator mean ==
Equal to
Approximately
Greater than
Not Equal
4 points
Question 21
4 points
Question 22
Programming method for solving a problem by solving a smaller version of the same problem repeatedly.
Repetition
Problem Solving
Debugging
Recursion
4 points
Question 23
4 points
Question 24
Component to a function used to get output directly from a function.
4 points
Question 25