answersLogoWhite

0

What is the large array?

User Avatar

Anonymous

10y ago
Updated: 4/18/2022

one of the world’s largest radio observatories

User Avatar

Evie Stiedemann

Lvl 10
3y ago

What else can I help you with?

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 Very Large Array?

one of the world’s largest radio observatories


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

microwaves


Why do use satellites?

there is only 1, it called Very Large Array


Array in a sentence?

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


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.


How many sites does NRAO operate?

NRAO operates a few sites, including the Very Large Array (VLA) in New Mexico, the Atacama Large Millimeter Array (ALMA) in Chile, the Very Long Baseline Array (VLBA) across the United States, and the Green Bank Telescope (GBT) in West Virginia.


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.