The term is: transmission flush
4. Only (ii)
<u>Explanation:</u>
The declaration of the array can be of two types:
1. int a[100];
2. int[] a = new int[100];
The general thing about an array is that whenever we want to undergo traversal in an array, we always have to start from the 0th position as the size of the array may be a whole number (let us say 10). So, to undergo traversal in an array, we start from 0 to n-1 (in this case 9) such that it covers the size of the array.
The size of an array can be finite or infinite. The general rule is it starts from 0 to n-1 where n is the size of the array. In the above example, the range of the index of the array will be 0 through 100 and not 1 through 100.
Document.write()
I'm not sure that this is a method, but I think this is right.
Answer: star topology.
Explanation:
The layout of the way how the computers in a netword are interconnected is called network tipology.
Some types of network topologies are:
1) Point-to-point tipology: all the computers are connected to each other directly (computer-to-computer, in pairs, this is a direct link between each two computers).
2) Bus topology: all the nodes (computers or server) are connectect to a maing cable.
3) Star topology: all the computers are connected to a central computer or server which is called central hub. This is the layout described in the question.
4) Ring topology: the computers are connectec in a circular path; each computer is connected to the next computer.
5) Mesh: every computer is connected to every other computer.