Respuesta :
Answer:
D
Explanation:
I ran it through app lab and it returned 30
The display in the console when the program runs is (D) 30
The first line of the program initializes numList to [10,20,30]
The second line of the program contains three instructions.
- The first instruction calculates the length of numList; the length is 3
- The next instruction gets the element at index 3 - 1; i.e. the element at the 2nd index; the element is 30
- The next instruction prints this element i.e. displays 30
Hence, the display in the console is (D) 30
Read more about programs at:
https://brainly.com/question/19105374