answersLogoWhite

0

What is a large array?

Updated: 8/11/2023
User Avatar

Wiki User

14y ago

Best Answer

one of the world’s largest radio observatories

User Avatar

Elza Olson

Lvl 13
1y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

For you to have enough space in storing data.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

int x [3000000];

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a large array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is array processor and what is the role of attached array processor?

aray processor is a processor that performs computations on large arrays of data. It is of two types: (1) attached array processor. (2)SIMD array processor.


What is non linear array?

What is ARRAY, explain its typesARRAY: -It is the combination of same data type or if same data is needed more then none time then we use array.Types Normally there are two types of array.(1) One dimensional array(2) Two dimensional array(1) One dimensional array: -This array is in form a list (vertical\Horizontal) the data input output or process in one dimensional array with the help of loop.The syntax of one dimensional array will be as:Array name [strength]For exampleA [5];The structure of above syntax will be as:A (0)A (1)A (2)A (3)A (4)(2) Two dimensional array: -Two dimensional array is also called a table because it consist of rows and columns. The syntax of two dimensional arrays will be as:Data type array name [rows] [columns]For exampleInt [3] [2];The structure of above syntax will be as:A [0] [0] A [0] [1]A [1] [0] A [1] [1]A [2] [0] A [2] [1]The data input output are process in this array with the help of nested loop.


Differentiate single dimensional array to double dimensional array?

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.


What is meant by irregular dimensional array?

An irregular dimensional array is a special type of multi-dimensional array.First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.Regular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4, 5}array[2] = new array{6, 7, 8}array[3] = new array{9, 10, 11}This regular array is an array of size 4 in which each sub-array is of size 3.Irregular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4}array[2] = new array{5, 6, 7}array[3] = new array{8, 9, 10, 11}This irregular array is an array of size 4 in which the size of each sub-array is not the same.


How do you swap two adjecent no in array in c?

Option 1) Use a temporary variable: int x = array[i]; array[i] = array[i+1]; array[i+1] = x; Option 2) Use bit operators: array[i] ^= array[i+1] ^= array[i];

Related questions

What is array processor and what is the role of attached array processor?

aray processor is a processor that performs computations on large arrays of data. It is of two types: (1) attached array processor. (2)SIMD array processor.


What is the large array?

one of the world’s largest radio observatories


Array in a sentence?

carlisle had to put the spices in an array on the spice rack before he closed it.


What is The Very Large Array?

one of the world’s largest radio observatories


Why do use satellites?

there is only 1, it called Very Large Array


What kind of electromagnetic radiation does the very large array collect?

microwaves


What stone is pink?

Could be a large array of stones. But It could also be Feldspar.


Which section of the book is most likely to provide you with a definition of array?

The Glossary, which is located in the back.Array:Verb 1.to place in proper or desired order; marshal: Napoleon arrayed his troops for battle.Noun1.) a large and impressive grouping or organization of things: He couldn't dismiss the array of facts.2.) a large group, number, or quantity of people or things: an impressive array of scholars; an imposing array of books.


What are the application of programmable array logic?

Programmable array logic is used for designing the digital circuits easily.for example large function which has several variable can easily implemented by using programmable array logic.These are the type of PLD's programmable logic devices.


What is VLA in astronomy?

VLA in astronomy is the Very Large Array (better known as the Karl G. Jansky Very Large Array. It is a radio astronomy observatory located on the Plains of San Agustin, New Mexico, USA.See related link for more information.


Write a program to input 10 number array and find smallest and largest number?

#include<stdio.h> void main() { int a[10],n,i,large,small; printf("enter the value of n\n"); scanf("%d",&n); printf("enter the elements\n"); for(i=0;i<n;i++) scanf("%d",&a[i]); large=a[0]; small=a[0]; for(i=1;i<n;i++) { if(a[i]>large) large=a[i]; if(a[i]<small); small=a[i];} printf("largest element in the array id %d\n",large); printf("smallest element in the array is %d\n",small); }


What is non linear array?

What is ARRAY, explain its typesARRAY: -It is the combination of same data type or if same data is needed more then none time then we use array.Types Normally there are two types of array.(1) One dimensional array(2) Two dimensional array(1) One dimensional array: -This array is in form a list (vertical\Horizontal) the data input output or process in one dimensional array with the help of loop.The syntax of one dimensional array will be as:Array name [strength]For exampleA [5];The structure of above syntax will be as:A (0)A (1)A (2)A (3)A (4)(2) Two dimensional array: -Two dimensional array is also called a table because it consist of rows and columns. The syntax of two dimensional arrays will be as:Data type array name [rows] [columns]For exampleInt [3] [2];The structure of above syntax will be as:A [0] [0] A [0] [1]A [1] [0] A [1] [1]A [2] [0] A [2] [1]The data input output are process in this array with the help of nested loop.