Ask Question

A two-dimensional array of characters can contain Group of answer choices

strings of the same length

strings of different lengths

uninitialized elements

All of these

+5
Answers (1)
  1. 11 May, 22:46
    0
    Answer: All of these.

    Explanation: Lets take a two-dimensional array alphabet[4][4]

    Lets say this array contains the following elements: Example 1

    a b c d

    l i o n

    f e l l

    s t e m

    These are the strings with same length. So this 2D array can contain strings of same length.

    Now lets take another 2D array Example 2

    a b c

    h i n t

    s o

    e g g

    2D array can have all these above mentioned elements. So it can contain strings of different lengths.

    Now consider the Example 2. Some places for the elements are left. This isn't an issue for 2D array. So it can contain uninitialized elements too.

    So the answer is All of above.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “A two-dimensional array of characters can contain Group of answer choices strings of the same length strings of different lengths ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers