Answer:
Input of printer - text
Output of Printer - text printed on paper
Input & output of digital Alexa - Voice/sound
Explanation:
Input for a printer is the text data entered into any of the file formats that can be printed.
Output of a printer is the text printed on a piece of paper.
Input of a digital assistant is in the form of voice
Output of a digital assistant in the form of sound
<span>to increase the computer's efficiency
The more files it holds, the more "jobs" it has to run, which means that you're computer would be using the same amount of energy running all of them as to less of them. When you close (or delete) some files, it allows the computer to concentrate on only running a smaller amount of files as oppose to a large amount
hope this helps</span>
Answer:
void doublelt(int *number)
{
*number=*number*2;
}
Explanation:
This exercise is for you to learn and understand the PASS BY POINTER syntax. The importance of this is that if you didnt use a pointer you would have to RETURN an int from the function. in that case the code would be:
int doublelt(int number)
{
number=number*2;
return number;
}
Passing by pointer manipulates the value by going inside the memory and where it resides. Without the pointer, the function would create COPIES of the argument you pass and delete them once the function ends. And you would have to use the RETURNED value only.