Answer:
B
Explanation:
allow battery to become fully discharged and retest
Answer:
0.0659 A
Explanation:
Given that :
( saturation current )
at 25°c = 300 k ( room temperature )
n = 2 for silicon diode
Determine the saturation current at 100 degrees = 373 k
Diode equation at room temperature = I = Io 
next we have to determine the value of V at 373 k
q / kT = (1.6 * 10^-19) / (1.38 * 10^-23 * 373) = 31.08 V^-1
Given that I is constant
Io =
= 0.0659 A
Answer:
battery life in year = 9 years and 48 days
Explanation:
given data
Battery Ampere-hours = 1.5
Pulse voltage = 2 V
Pulse width = 1.5 m sec
Pulse time period = 1 sec
Electrode heart resistance = 150 Ω
Current drain on the battery = 1.25 µA
to find out
battery life in years
solution
we get first here duty cycle that is express as
duty cycle =
...............1
duty cycle = 1.5 × 
and applied voltage will be
applied voltage = duty energy × voltage ...........2
applied voltage = 1.5 ×
× 2
applied voltage = 3 mV
so current will be
current =
................3
current = 
current = 20 µA
so net current will be
net current = 20 - 1.25
net current = 18.75 µA
so battery life will be
battery life = 
battery life = 80000 hours
battery life in year = 
battery life in year = 9.13 years
battery life in year = 9 years and 48 days
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<