Ask Question
7 May, 10:59

Dimensional arrays can be created using loops. 2 dimensional arrays can be created using:

a-A While Loop with the Bundle Function

b-Nested Loops

c-A For Loop With the Bundle Function

d-Nested Bundling Functions

+5
Answers (1)
  1. 7 May, 11:12
    0
    b-Nested Loops

    Explanation:

    To create a 1-D array we use single loop. For example:-

    int a[10];

    for (int i=0; i<10; i++)

    {

    cin>>a[i];

    }

    Taking input of a 1-D array.

    For creating a 2-D array we use nested loops.

    int a[row][column];

    for (int i=0; i
    {

    for (int j=0; j
    {

    cin>>a[i][j];

    }

    }

    Hence the answer for this question is nested loops.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Dimensional arrays can be created using loops. 2 dimensional arrays can be created using: a-A While Loop with the Bundle Function b-Nested ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers