Answer:
Option a is the correct answer.
Explanation:
- The information overflow is a state where the coming information will be more in comparison with processing information.
- For example, if there is limited space and any user has more luggage to keep on that space, then we can say that the luggage is overflow.
- So when the information is more and the processing capacity is less then we can say it information overflow condition and it is also asked by the above question. Hence option a is the correct answer.
- While the other is not because:- option b, c and d states some information statements which do not come in any information condition.
The answer to your question is: <span>Explain- </span>
<span>The CPU, monitor, speaker or earphone, keyboard, mouse etc. that you can touch are hardware. </span>
<span>The software or program such as the operating system, windows media player, ms office, paint etc that you cannot touch actually but they are shown on the monitor are called software. </span>
<span># You play the music with Windows media player or any music player that means you are using software. And the software itself is showing on the monitor(hardware) that is run by CPU, another hardware. </span>
<span>Hope you got it.. Please give me brnliest.
</span>
Answer:
b) void xyzfunc (int &myint);
Explanation:
To use the same memory location as the variable in the calling function we have to pass the variable by reference means passing the same address to the function.So to do that we have use & operator which stands for address.
We will do this as following:-
void xyzfunc (int * myint);
Hence the answer is option b.