Yes. Kinetic energy is a form of mechanical energy and friction will turn that kinetic energy into heat.
Answer: Long Answer...
Explanation: Most of the time, chemical energy is released in the form of heat, and this transformation from chemical energy to heat, or thermal energy, is called an exothermic reaction. Next, there are two main types of mechanical energy: kinetic energy and potential energy.
Answer:
The speed of molecule decreases and temperature also decreases
Explanation:
Kinetic energy of the molecules of a subsance is directly proportional to the temperature of molecule So as the kinetic energy decrease, temperature also decreases. decreses their speed.
Answer:
L = 22.97 H
Explanation:
Given that,
Capacitance, 
Oscillation frequency, f = 0.5 Hz
The frequency of an AC circuit is given by :

Where
L is impedance

So, the impedance of LC circuit 22.97 H.
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.