Answer:
a) 3673469.39 seconds
b) 6.61×10¹⁴ m
Explanation:
t = Time taken
u = Initial velocity
v = Final velocity = 0.12×3×10⁸ m/s
s = Displacement
a = Acceleration due to gravity = 9.8 m/s²
Equation of motion

Time taken to reach 12% of light speed is 3673469.39 seconds

The distance it would have to travel is 6.61×10¹⁴ m
Answer:
4 A
Explanation:
We are given that

I=12 A
We have to find the current flowing through each resistor.
We know that in parallel combination current flowing through different resistors are different and potential difference across each resistor is same.
Formula :

Using the formula



Substitute the values



Hence, current flows through any one of the resistors is 4 A.
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:
The charge resides on the outer surface =
C
Explanation:
Surface area of cell 
Separation between two plate
Dielectric constant 
Potential difference 
The capacitance of parallel plate capacitor in free space is given by,

Where
permittivity of free space = 
The Capacitance of capacitor is increase by
times when it placed in dielectric medium.

And we know that, 
So charge on the outer surface is given by,


