answersLogoWhite

0

A multi-dimensional spreadsheet is one that utilizes models built on objects called variables instead of data in the cells of a report. This was created in the late 1980's.

User Avatar

Annalise Koch

Lvl 10
1y ago

What else can I help you with?

Related Questions

What is a multi dimensional spreadsheet?

A multi-dimensional spreadsheet is one that utilizes models built on objects called variables instead of data in the cells of a report. This was created in the late 1980's.


What graph shows how output changes when a single input changes?

A multi-dimensional scatter plot.A multi-dimensional scatter plot.A multi-dimensional scatter plot.A multi-dimensional scatter plot.


When was Multi-Dimensional Warrior created?

Multi-Dimensional Warrior was created on 2008-10-14.


What are the 2 types of Spreadsheet?

Manual and Electronic


What is multidimentional array?

Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.


What is a multidimentional array?

Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.


Which kind of database stores data in dimensions?

multi dimensional


Why is communication is considered as a multi-dimensional process?

i need help..


What are the release dates for Santana Multi Dimensional Warrior - Live at the Fillmore - 2009 TV?

Santana Multi Dimensional Warrior - Live at the Fillmore - 2009 TV was released on: USA: May 2009


Why is health consider as a combination of multi dimensional characteristics?

it is the ans of this question


What is a multi array?

A two-dimensional array is the simplest multi-dimensional array and is implemented as a one-dimensional array where every element is itself a one-dimensional array. We can imagine a two-dimensional array as being a table of rows and columns where every row is an array in its own right. A three-dimensional array is simply a one-dimensional array of two-dimensional arrays, which can be imagined as being an array of tables. Extending the concept, a four-dimensional array is a table of tables. Multi-dimensional arrays may be jagged. That is, a two-dimensional array may have rows of unequal length. Unlike regular arrays, jagged arrays cannot be allocated in contiguous memory. Instead, we use the outer array (the first dimension) to store pointers to the inner arrays. An array of strings (character arrays) is an example of a two-dimensional jagged array.


How does two dimensional array differ from single dimensional array?

A one dimensional array is a scalar value repeated one or more times.A two dimensional array is an array of one dimensional arrays.A three dimensional array is an array of two dimensional arrays, and so forth.The one dimensional array is like a list of things, where the two dimensional array is like an array of things. (Think one row of a spreadsheet versus the whole spreadsheet.)[addendum]Every level of array depth is also a level of pointer depth. For example: A 3 dimensional int array is an int***. So a one dimensional int array is an int*, and a two dimensional int array is an int**. This is only important if you are doing pointer work, but it can become very important.