Answer:
Numbers 4, 6, & 7 are correct
Explanation:
4- this allows the op amp to have zero voltage so that maximum voltage is transferred to output load.
6- this ensures that op amp doesn't cause loading in the original circuit, high input impedance would not deter the circuit from pulling current from it.
7- high difference between upper and lower frequencies.
Answer:
51.4 Ohms
Explanation:
By applying voltage division rule
where v is voltage, subscripts i and f represnt initial and final, R is resistance, m is internal and l is external.Substituting 7V for final voltage, 10V for initial voltage and the external resistance as 120 Ohms then
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100