<span>A. Chemical energy to chemical energy</span>
Answer:
1 N
Explanation:
Buoyant Force: This is also called upthrust, It can be defined as the force which act upward exerted by a fluid when an object is placed in it.
The S.I unit is Newton.
From the question,
Buoyant force = Weight of the object in air- weight of the object when submerged in water.
U = W-W'.......................... Equation 1
Where U = upthrust, W = weight in air, W' = weight when submerged in water.
Given: W = 3 N, W' = 2 N
Substitute into equation 1
U = 3-2
W = 1 N
Answer:
The acceleration due to gravity at Pluto is 0.0597 m/s^2.
Explanation:
Length, L = 1 m
10 oscillations in 257 seconds
Time period, T = 257/10 = 25.7 s
Let the acceleration due to gravity is g.
Use the formula of time period of simple pendulum

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.