Answer:0.1898 Pa/m
Explanation:
Given data
Diameter of Pipe
Velocity of water in pipe
We know viscosity of water is
Pressure drop is given by hagen poiseuille equation

We have asked pressure Drop per unit length i.e.

Substituting Values

=0.1898 Pa/m
To get rockets into orbit, they need much more thrust than the amount that will get them up to the required altitude. They also need sufficient thrust to allow them to travel with very high orbital speed. ... If speed is less than this, an object will fall back to the Earth
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:
Multiplying impulse response by t ( option D )
Explanation:
We can obtain The impulse response of strength 1 considering a unit step response by Multiplying impulse response by t .
When we consider the Laplace Domain, and the relationship between unit step and impulse, we can deduce that the Impulse response will take the inverse Laplace transform of the function ( transfer ) . Hence Multiplying impulse response by t will be used .
Answer:
For most applications, it is simple, dependable, efficient, and straightforward to apply - a simple trigger signal may be provided, with appropriate processing if necessary. This implies that an appropriate trigger signal may be generated using other electrical circuits and then applied to the SCR.
Explanation: