Answer:
λ = 8.88 x 10⁻⁷ m = 888 nm
Explanation:
The energy band gap is given as:
Energy Gap = E = 1.4 eV
Converting this to Joules (J)
E = (1.4 eV)(1.6 x 10⁻¹⁹ J/1 eV)
E = 2.24 x 10⁻¹⁹ J
The energy required for photovoltaic generation is given as:
E = hc/λ
where,
h = Plank's Constant = 6.63 x 10⁻³⁴ J.s
c = speed of light = 3 x 10⁸ m/s
λ = wavelength of light = ?
Therefore,
2.24 x 10⁻¹⁹ J = (6.63 x 10⁻³⁴ J.s)(3 x 10⁸ m/s)/λ
λ = (6.63 x 10⁻³⁴ J.s)(3 x 10⁸ m/s)/(2.24 x 10⁻¹⁹ J)
<u>λ = 8.88 x 10⁻⁷ m = 888 nm</u>
Answer:
Frequency = f = 10.0394 (1/s)
Explanation:
The frequency of oscillation of the system is given by the action:
f= √(k/m)
f= system count
k = spring constant
m = mass connected to the spring
Therefore the frequency will be:
f= √(k/m) = √(383(N/m) / (3.8kg))= √( 100.7895 (kg×m/s²)/(kg ) =
= √( 100.7895 (1/s²) = 10.0394 (1/s)
B- we would need the time to fulfill the formula distance = speed x time
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.
Answer: (a) The magnitude of its temperature change in degrees Celsius is
.
(b) The magnitude of the temperature change (change in T = 15.1 K) in degrees Fahrenheit is
.
Explanation:
(a) Expression for change in temperature is as follows.

= 15.1 K
= 
= 
= 
Therefore, the magnitude of its temperature change in degrees Celsius is
.
(b) Change in temperature from Celsius to Fahrenheit is as follows.
F = 1.8C + 32
C = 
Since, K = C + 273
or, 

= 1.8 (15.1)
= 
or, = 
Thus, we can conclude that the magnitude of the temperature change (change in T = 15.1 K) in degrees Fahrenheit is
.