answersLogoWhite

0

Array speakers, You can see it in the theaters, it is simply a large number of speakers hanging or placed vertically in the wall and it produce a uniform sound. It is used to reach the voice to each and every individual person in that theater.

By regards

udayan AR

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

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.


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.


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];


How do you swap rows in 2 dimensional array in Java?

[]temp = array[1] array[2]=array[1] array[1]=[]temp


What is the array function in CAD?

there r 2 types of array in cad - rectangular array and polar array...........

Related Questions

What is a gosney speaker?

is a speaker made to be heard and loud


What is meant by array set?

1. An array of sets. 2. An array that represents a set.


What is the symbol for sound?

a loud speaker and for no sound it is a loud speaker with a cross on it


Is loud speaker a pure transducer?

NO


Ipod touch play music outloud?

yes it can, but not that loud, if not loud enough buy speaker's


What type of energy is given out by a loud speaker?

Sound energy is given out by a loud speaker. This energy is produced by the vibration of the speaker cone, which creates variations in air pressure that we perceive as sound.


What are three components of a loud speaker system?

there are none


What is meant by built in speaker?

It means it has a built in speaker inside the iPod..


Can you produce ultrasound from a speaker by passing high frequency a.c. current through it?

Because at very high frequencies, the inductive effect of loud speaker coil is so high that practically no current passes through it. Further, the diaphragm of the loud speaker cannot respond for such high frequency. Hence ultrasonic waves cannot be produced using loud speaker.


How could you show that a loud speaker has a magnet in it?

Figure it out yourself


What actors and actresses appeared in The Loud Speaker - 1926?

The cast of The Loud Speaker - 1926 includes: Blossom as Blossom Mary Brough as Mother-in-Law John Henry as John Henry


What is meant by array with in structure in c language?

It means a structure has a member that is an array: typedef struct foo { int x[42]; // an array of 42 integers // other members... };