answersLogoWhite

0


Best Answer

It's difficult to understand the question, but WikiAnswers doesn't do well with multiple choice questions.

In general, refracting telescopes are smaller than reflecting telescopes; a refractor has the light going straight through the tube, and structural considerations force limits on its size. In a reflecting telescope, the light path is folded back on itself, and reflecting mirrors reflect more light than thick lenses can pass through. But the largest current reflecting telescope is perhaps 300 inches in diameter, although larger ones are planned.

By contrast, the Very Large Array of radio telescopes is ACRES in total size, and there is no theoretical limit in how large "it" could be - because "it" is actually "they". Dozens, potentially hundreds of radio telescopes can add their size together to develop a more sensitive and more precise instrument.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What telescopes is the largest reflecting refracting x-ray or the very large array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Movies & Television

What will be the algorithm to input n integers and output the largest one?

var largest : integer largest = array[0] for n : integer in array if n > largest largest = n endif endfor return largest


Why do astronomers continue to build even larger telescopes?

Radio telescopes allow us to see things that can't be seen in visible light. And vice versa, optical telescopes can show things that are not visible in radio telescopes. So, the information from both kinds of telescopes really complements each other.


How does structure differ from an array?

structure is a collection of dissimilar datatypes whereas array is collection of similar datatypes.....


Why do radio telescopes work better down in the valleys?

Radio telescopes tucked into valleys can "hide" in there from interference that may be radiated into the side of the antenna array from earth sources. Better shielding equals less noise (interference) and greater resolution of a desired signal. Remember that radio telescopes are highly directional, and they don't "see" signals to the sides well. Now consider the "closeness" of a source on earth compared to any space object that is an image objective. There is no comparison. Any source of interference on earth will be a zillion times "closer" and the signal will be a zillion times "larger" than a space objective, even though the noise is "coming in from the side" to hit the dish. Bad news for the radio astronomer. Hide the dish, slash interference radiated into the sides of your dish and get good (better) results. Piece of cake.


Why did Gemini astronauts have a mirror on their suit?

The Laser Ranging Retroeflector (LRRR) is an optical corner reflector used to measure lunar librations (both in latitude and longitude), the recession of the moon from the Earth due to tidal dissipation, and the irregular motion of the Earth, including the Chandler wobble of the poles. This is accomplished by using the technique of short-pulse laser ranging. NASA astronauts placed 3 LRRR's on the lunar surface. The LRRR of Apollo 14 differed in only main design aspects from that on Apollo 11. The LRRR on Apollo 15 was the largest, with 300 separate sub-reflectors - The previous two had only 100. The Apollo 15 array consisted of a hinged, two panel assembly (204 and 94 reflectors) mounted on a leg assembly, which was deployed by the astronaut. The larger array was to allow smaller telescopes on Earth to receive signals from it, but a report on July 31, 1971 showed that the larger array was comparable, but not superior, to the smaller arrays.

Related questions

What are some similarities and differences between refracting and reflecting telescopes?

A refracting telescope is a type of telescope that has a large thin lense at the front and a smaller thicker lense at the end where the eyepiece is. Refracting telescopes use lenses unlike reflecting telescopes that use mirrors to reflect the light. This is a good image of a refracting and reflecting telescope: [See related link]


Group of radio telescopes radio telescope array radio astronomy?

Radio Telescope Arrays


Write a function in java that accepts an array of integers and returns the second largest integer in the array Return -1 if there is no second largest?

Method 1: Sort the array in descending order, compare 1st and 2nd if not same , return 2nd if same return -1 Method 2: Find the largest number in the array, initialize another array with dimension 1 less than of original. Copy the array elements from the original array minus the largest element. not select largest from the second array and compare with the previous one if not same return the second largest if same return -1


What will be the algorithm to input n integers and output the largest one?

var largest : integer largest = array[0] for n : integer in array if n > largest largest = n endif endfor return largest


How is the VLA similar to an optical telescope?

well,both telescopes let you look into the ground into the inner core and you see deep in he atmosphere which is space. Errr... The Very Large Array is an array of radio-telescopes, i.e. it detects radio emissions from stars and similar. An optical telescope as its name suggests, collects visible light. The similarity is that increasing the aperture increases the radiation-gathering power by a square-law. In an optical telescope this is achieved by a larger mirror (or lens but most large telescopes are reflecting.) The VLA uses a "synthetic aperture" to gain the advantages of increasing its gathering area without the cost and complexity of building a single, very large dish.


What is it called when scientists use more than one telescope to look at the same object?

Interferometry. First used in radio telescopes optical instruments were a "relatively" recent addition to the process. It is the interference of signals that is used to create resolution. The further the instruments are apart the better it works.


What is the large array?

one of the world’s largest radio observatories


What is The Very Large Array?

one of the world’s largest radio observatories


What are three primary contributions to Astronomy?

Galileo's desktop telescope, Edwin Hubble's Galaxy Tracker, and Radio Telescopes -as in The Very Large Telescopic Array - the VLTA.


What is an alma?

An alma is an Egyptian singer or dancing-girl used for entertainment or as a mourner.


How do you write a C plus plus function lastLargestIndex that returns the index of the last occurrence of the largest element in the array?

int lastLargestIndex(int a[],int n) //a=array, n= number of elements in array { int max=a[0],maxp=0; //max=largest no., maxp= position of largest no. for(int i=0;i<n;i++) if(a[i]>=max) { max=a[i]; maxp=i; } return maxp; }


To find the largest element of an array in c plus plus?

int GetMaxElement( void * array) { if (array != 0) { return(max(array[], typeof(array))); } return(0); }