Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Answer:
8.85 Ω
Explanation:
Resistance of a wire is:
R = ρL/A
where ρ is resistivity of the material,
L is the length of the wire,
and A is the cross sectional area.
For a round wire, A = πr² = ¼πd².
For aluminum, ρ is 2.65×10⁻⁸ Ωm, or 8.69×10⁻⁸ Ωft.
Given L = 500 ft and d = 0.03 in = 0.0025 ft:
R = (8.69×10⁻⁸ Ωft) (500 ft) / (¼π (0.0025 ft)²)
R = 8.85 Ω
The component of a regenerative vapor power cycle that permits only liquid to pass through to a region of lower pressure is a Valve/trap.
<h3>What is vapor?</h3>
- In physics, a substance in the gas phase at a temperature lower than its critical temperature is referred to as a vapor or vapor.
- This means that the vapor can be condensed to a liquid by increasing the pressure on it without decreasing the temperature.
- An aerosol is distinct from a vapor.
- A suspension of minute liquid, solid, or both types of particles in a gas is known as an aerosol.
<h3>Why does vapor form?</h3>
- Evaporation or sublimation are two processes that can be used to create it.
- Unlike clouds, fog, or mist, which are only suspended drops of liquid water in the atmosphere, watevaporur is a gas and cannot be seen.
- In the atmosphere, water vapor frequently exists below the boiling point.
Learn more about vapor here:
brainly.com/question/14578189
#SPJ4
Answer:
Kinetic energy can be used to develop electric energy which can be used as electricity.
Explanation:
The kinetic energy can be harnessed; much like some hydro power technologies harness water movement. A way to convert this kinetic energy into electric energy is through piezoelectric. By applying a mechanical stress to a piezoelectric crystal or material an electric current will be created and can be harvested.
Kinetic energy is also generated by the human body when it is in motion. Studies have also been done using kinetic energy and then converting it to other types of energy, which is then used to power everything from flashlights to radios and more.