Question 65 6 pts Lists have numerous methods that allow you to work with the el
ID: 3698953 • Letter: Q
Question
Question 65 6 pts
Lists have numerous methods that allow you to work with the elements that they contain. Match each action with it's method, function, or statement.
This built-in function returns the length of a list.
[ Choose ] len append del remove sort max index min reverse insert
This built-in function returns the highest value in a list.
[ Choose ] len append del remove sort max index min reverse insert
This method adds an item to the end of an existing list.
[ Choose ] len append del remove sort max index min reverse insert
This method returns the first index in the list that argument appears, or ValueError exception if the argument was not found in the list.
[ Choose ] len append del remove sort max index min reverse insert
This method rearranges the elements of a list so they appear in ascending order.
[ Choose ] len append del remove sort max index min reverse insert
This statement removes an item at a specific index in a list.
[ Choose ] len append del remove sort max index min reverse insert
Question 36 3 pts
A variable's __________ refers to the part of the program in which that variable is accessible.
-name
-range
-value
-scope
A(n) __________ is a variable that receives data passed into a function.
-argument -
parameter
-function
-exception
Compared to bellow
Statements that should execute when an exception occurs are put in a(n) __________ block.
Program statements that might generate an exception are put in a(n) __________ block.
tryExplanation / Answer
This built-in function returns the length of a list.
Answer: len
This built-in function returns the highest value in a list.
Answer:
max
This method adds an item to the end of an existing list.
Answer:
append
This method returns the first index in the list that argument appears, or ValueError exception if the argument was not found in the list.
Answer:
index
This method rearranges the elements of a list so they appear in ascending order.
Answer: sort
This statement removes an item at a specific index in a list.
Answer: del
A variable's __________ refers to the part of the program in which that variable is accessible.
Answer:
scope
A(n) __________ is a variable that receives data passed into a function.
Answer:
parameter
Program statements that might generate an exception are put in a(n) __________ block.
Answer: try
Statements that should execute when an exception occurs are put in a(n) __________ block.
Answer:
except
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.