R₂ and R₃ can be replaced by:
The total R of the circuit is R₁+R₅+R₄ = 706 2/3
So the current in the circuit I=V/R is 100/(706 2/3) = 15/106 A
(I'm deliberately not trying to round the result)
The voltage drop over R₄ is V=I*R = 15/106 * 500 ≈ 70
So answer C would be my choice.
False I believe probably false
Answer:
The debugged program is as follows:
A=2
B=2
For I=1 to 10
PRINT A
TEMP = A
A=B
B=TEMP+A
NEXT I
END
Explanation:
First, the value of B should be changed to 4 (because the second term of the sequence is 2
Next, change Display to Print because Q-basic uses the print keyword to display output
The sequence is not properly generated. So, I update that part of the program to:
<em>For I=1 to 10
</em>
<em>PRINT A
</em>
<em>TEMP = A
</em>
<em>A=B
</em>
<em>B=TEMP+A
</em>
<em>NEXT I
</em>
<em />
Lastly, the loop is controlled by variable I (not X).
So change NEXT X to NEXT I
Answer:
ONE
Explanation:
It prints one because % is modulus, which is remainder division. It divides the numbers provided and returns the remainder of the division. 9 / 2 = 4 with 1 remainder, which leads us to our answer.
Answer:
future value = 232369.1361
return % = 384.10 %
Explanation:
given data
principal = $100 per month
time = 40 year = 480 months
rate = 6.25 % yearly = 0.0625 yearly = 0.005208 monthly
to find out
total amount of capital at the end of your investment and percentage is your total return
solution
so here future value formula is
future value = P ..........1
here r is rate and t is time and P is principal
so put all value
future value = 100
future value = 232369.1361
so
Total capital at the end of investment-Total principle invested over the years
232369.1361 - 100 ( 12 × 40 )
184369.1361
so
Return % = × 100
return % = 384.10 %