Answer:
they work with aircraft, designing aircrafts.
Explanation:
Answer:
1.2727 stokes
Explanation:
specific gravity of fluid A = 1.65
Dynamic viscosity = 210 centipoise
<u>Calculate the kinematic viscosity of Fluid A </u>
First step : determine the density of fluid A
Pa = Pw * Specific gravity = 1000 * 1.65 = 1650 kg/m^3
next : convert dynamic viscosity to kg/m-s
210 centipoise = 0.21 kg/m-s
Kinetic viscosity of Fluid A = dynamic viscosity / density of fluid A
= 0.21 / 1650 = 1.2727 * 10^-4 m^2/sec
Convert to stokes = 1.2727 stokes
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