Keyboard would be the correct answer
Answer:
B. 1 6 3
Explanation:
Given function definition for calc:
void calc (int a, int& b)
{
int c;
c = a + 2;
a = a * 3;
b = c + a;
}
Function invocation:
x = 1;
y = 2;
z = 3;
calc(x, y);
cout << x << " " << y << " " << z << endl;
- Since x is passed by value, its value remains 1.
- y is passed by reference to the function calc(x,y);
Tracing the function execution:
c=3
a=3
b=c+a = 6;
But b actually corresponds to y. So y=6 after function call.
- Since z is not involved in function call, its value remain 3.
So output: 1 6 3
Answer: 115 miles a month
Explanation:
460/4
which equals
<em><u>115 miles per month</u></em>
The likely cause of the printer printing in the wrong colors includes:
- Ink cartridges installed in the wrong spot
- leaking ink cartridges
<h3>What is a inkjet printer?</h3>
This refers to a computer peripheral that produces hard copies of a text document or photo by spraying droplets of ink onto paper.
In conclusion, the likely cause of the printer printing in the wrong colors includes ink cartridges installed in the wrong spot and leaking ink cartridges.
Read more about inkjet printer
brainly.com/question/4962501
#SPJ4