Answer:
A register
Explanation:
Registers are small memory used to store data or values and supply them to the processor as and when needed. These register hold the data temporarily and hold small units of program instructions. So whenever the CPU wants to work on data they have to be made available through the registers. Even after a arithmetic operation the registers serve as buckets for holding the value.
There are different types of registers such as register A, B, C etc and these registers lie in close proximity to the CPU so that we could provide the data immediately and much faster when asked by the CPU.
Therefore we can say that registers are used to temporarily hold small units of program instructions and data immediately before, during, and after execution by the central processing unit (CPU).
Answer:
B) Bridge.
Explanation:
LAN refers to a local area network in which the network of computer are interconnected in less than an area which is limited i.e. school, university, residence, office building, etc
It is used to share a common line of communication within a less geographic area.
In order to transmit one LAN to the another LAN, the device we called as a bridge
Therefore the correct option is B. bridge
Answer:
Calculating the Elapsed Running time of algorithm , we put System.currentTimeMillis() at the start of main method and at the end of main Method and calculate the difference.
long end = System.currentTmeMillies();
------Program -------
long end = System.currentTmeMillies();
long elapsedTime = end-start
Explanation: