Answer:
Part 1: It would be a straight line, current will be directly proportional to the voltage.
Part 2: The current would taper off and will have negligible increase after the voltage reaches a certain value. Graph attached.
Explanation:
For the first part, voltage and current have a linear relationship as dictated by the Ohm's law.
V=I*R
where V is the voltage, I is the current, and R is the resistance. As the Voltage increase, current is bound to increase too, given that the resistance remains constant.
In the second part, resistance is not constant. As an element heats up, it consumes more current because the free sea of electrons inside are moving more rapidly, disrupting the flow of charge. So, as the voltage increase, the current does increase, but so does the resistance. Leaving less room for the current to increase. This rise in temperature is shown in the graph attached, as current tapers.
Answer:
a)
, b)
,
,
, c)
,
,
, 
Explanation:
a) The total number of users that can be accomodated in the system is:


b) The length of the side of each cell is:


Minimum time for traversing a cell is:



The maximum time for traversing a cell is:


The approximate time is giving by the average of minimum and maximum times:


c) The total number of users that can be accomodated in the system is:


The length of each side of the cell is:


Minimum time for traversing a cell is:



The maximum time for traversing a cell is:


The approximate time is giving by the average of minimum and maximum times:


Answer:
The power developed by engine is 167.55 KW
Explanation:
Given that

Mean effective pressure = 6.4 bar
Speed = 2000 rpm
We know that power is the work done per second.
So

We have to notice one point that we divide by 120 instead of 60, because it is a 4 cylinder engine.
P=167.55 KW
So the power developed by engine is 167.55 KW
Answer:
#include <stdio.h>
void SplitIntoTensOnes(int* tensDigit, int* onesDigit, int DecVal){
*tensDigit = (DecVal / 10) % 10;
*onesDigit = DecVal % 10;
return;
}
int main(void) {
int tensPlace = 0;
int onesPlace = 0;
int userInt = 0;
userInt = 41;
SplitIntoTensOnes(&tensPlace, &onesPlace, userInt);
printf("tensPlace = %d, onesPlace = %d\n", tensPlace, onesPlace);
return 0;
}
D sounds more formal than the rest.