QUESTION 43 A local variable\'s scope is the function in which it was created. T
ID: 3674454 • Letter: Q
Question
QUESTION 43
A local variable's scope is the function in which it was created.
True
False
10 points
QUESTION 44
In Python, many standard library functions are organized into files called __________.
interpreters
global constants
black boxes
modules
10 points
QUESTION 45
A __________ variable is accessible throughout an entire program, including any functions.
range
local
global
mainline
10 points
QUESTION 46
Local variables in one function may NOT have the same name as local variables in another function.
True
False
10 points
QUESTION 47
The __________ statement is used to load modules in Python.
include
extend
import
require
10 points
QUESTION 48
A value-returning function can return more than one value.
True
False
interpreters
global constants
black boxes
modules
Explanation / Answer
43)
true
44)
ans- Modules
A module is a file containing Python definitions and statements intended for use in other Python programs. There are many Python modules that come with Python as part of the standard library.
45)
Global
Global variables are defined outside of all the functions, usually on top of the program. The global variables will hold their value throughout the life-time of your program.
46)
False
A variable declared as local is one that is visible only within the block of code in which it appears. It has local scope.
47)
Import
48)
False
A value-returning function can return one value
Output :
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.