Yeah yeah I just got a hold of you and I saw that you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job and I thought you were doing a good job.
Answer:
96w
Explanation:
p=Iv..where v=12 and I=8.0
Answer:
The fuse must be connected between the device and the power intake source.
Explanation:
A fuse is a protective component of electrical appliances that is designed to be sensitive to a particular range of electric current
The fuse is made of a thing metal strip with a known melting point. Once current abive its carrying capacity flows through it, large heat is generated in the metal strip which melts it and causes the metal strip to cut int two protecting the device from the power spike.
Answer:
<h2>
14.66secs</h2>
Explanation:
Given the formula for calculating the depth in metres expressed as
depth in meters = ½ (1500 m/sec × Echo travel time in seconds)
Given depth of the challenger = 10, 994 meters, we will substitute this given value into the formula given to calculate the time take for the echo to travel.
10, 994 = depth in meters = ½ * 1500 m/sec × Echo travel time in seconds
10,994 = 750 * Echo travel time in seconds
Dividing both sides by 750;
Echo travel time in seconds = 10,994 /750
Echo travel time in seconds ≈ 14.66secs (to two decimal places)
Therefore, it would take an echo sounder’s ping 14.66secs to make the trip from a ship to the Challenger Deep and back
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.