Computer Science, asked by AleenaAnnaRobin, 1 year ago

Double dimensional array included in icse 2018 computer applications syllabus especially in section B

Answers

Answered by Animesh08
1
No double dimension array is not there in the syllabus of computer of icse....
Answered by Dårviñ714
1
In the syllabus it is clearly stated that single dimensional array only.
But we should study how 2-dimensional array work and it's definition.
It's definition is:

It is an array in which each element itself is an array arranged in rows and columns.

It is initialised using a new keyword

int a[][] =new int [3][3]; //The first square brackets is for rows and second for columns

Then it will become a matrix of 3 rows and 3 columns.
Attachments:
Similar questions