Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

*All questions refer to python.* QUESTION 22 The Python Framework does inform yo

ID: 3582761 • Letter: #

Question

*All questions refer to python.*

QUESTION 22

The Python Framework does inform you where an error occurred

True

False

2 points   

QUESTION 23

____ is a critical component to being able to store data and information long term.

File Access

Memory

Print function

with

2 points   

QUESTION 24

Error handling is also known as ___ handling

Result

Recursion

Exception

Crash

2 points   

QUESTION 25

We use a ______ block to handle thrown exceptions.

try

except

keywords

lists

2 points   

QUESTION 26

When does python limit access to global 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.

2 points   

QUESTION 27

Passes multiple values into a function for processing

Global variable

Code block

Return

Parameter list

2 points   

QUESTION 28

There is no limit to the number of except blocks a program can have.

True

False

2 points   

QUESTION 29

When we pass a variable into a function and then modify that variable inside of the function, it also modifies the variable outside of the function that we passed into the function.

True

False

File Access

Memory

Print function

with

Explanation / Answer

Solution:

QUESTION 22: FALSE

The Python Framework doesn't inform you where an error occurred.

QUESTION 23: a) File Access

File Access is a critical component to being able to store data and information long term.

QUESTION 24 : c) Exception

Error handling is also known as Exception handling.

QUESTION 25: b) except

We use a except block to handle thrown exceptions.

QUESTION 26: b) When there is the presence of a newly created local variable with a different name than the global variable.

QUESTION 27: c) Return