Solved

Consider the List C: C = [-45, 6, 0, 72

Question 23

Multiple Choice

Consider the list c: c = [-45, 6, 0, 72, 1543]
Which of the following statements a) , b) or c) is false?


A) You reference a list element by writing the list's name followed by the element's index (that is, its position number) enclosed in square brackets ([], known as the subscription operator) .
B) The names of c's elements are c[0], c[1], c[2], c[3] and c[4].
C) The length of c is 5.
D) All of the above statements are true.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions