What is used to indicate an array/list?
-
curly brackets
-
round brackets
-
square brackets
-
a colon :
C
Correct answer
Explanation
In most programming languages, including Python, square brackets are the standard syntax used to define or access elements in an array or list. Curly brackets are typically used for sets or dictionaries, and round brackets are used for tuples or function calls.