Answer:
I think its A
Explanation:
if its every 3 seconds wouldnt it be 3.0 Hz
Answer:
t = √2y/g
Explanation:
This is a projectile launch exercise
a) The vertical velocity in the initial instants ( = 0) zero, so let's use the equation
y = t -1/2 g t²
y= - ½ g t²
t = √2y/g
b) Let's use this time and the horizontal displacement equation, because the constant horizontal velocity
x = vox t
x = v₀ₓ √2y/g
c) Speeds before touching the ground
vₓ = vox = constant
= - gt
= 0 - g √2y/g
= - √2gy
tan θ = Vy / vx
θ = tan⁻¹ (vy / vx)
θ = tan⁻¹ (√2gy / vox)
d) The projectile is higher than the cliff because it is a horizontal launch
Answer:
F = 2.49 x 10⁻⁹ N
Explanation:
The electrostatic force between two charged bodies is given by Colomb's Law:
where,
F = Electrostatic Force = ?
k = colomb's constant = 9 x 10⁹ N.m²/C²
q₁ = charge on proton = 1.6 x 10⁻¹⁹ C
q₂ = second charge = 1.4 C
r = distace between charges = 0.9 m
Therefore,
<u>F = 2.49 x 10⁻⁹ N</u>
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.