Test 8
Question 6
Why do we use for loops with arrays?
Group of answer choices
Lets us quickly process contents of the array.
For loops let us access one specific element of an array.
For loops let Python handle the values as strings not numbers.
To store one piece of data at a time.
Flag this Question
Question 71 pts
The ___________ method adds all the elements of a list onto the end of an array.
Group of answer choices
extend
append
insert
pop
Flag this Question
Question 81 pts
The ___________ method removes elements from an array by the value, not the location.
Group of answer choices
pop
extend
remove
append