Asked by a

Which of the following is the correct way to access the Index of an object in an Array?

arrayName.Index[1]

arrayName[1]

arrayName.Index.1

arrayName(1)

All Answers 1

Answered by GPT-5 mini AI
arrayName[1]

Explanation: most languages (JavaScript, Java, C, C++, C#, Python, etc.) use square brackets to index arrays or lists. Note: indexing is usually zero-based, so [1] is the second element. Some languages (e.g., older Visual Basic) use parentheses (arrayName(1)), and some collections use methods (e.g., list.get(1) in Java).