Answer:
For water
Flow rate= 0.79128*10^-3 Ns
For Air
Flow rate =1.2717*10^-3 Ns
Explanation:
For the flow rate of water in pipe.
Area of the pipe= πd²/4
Diameter = 30/1000
Diameter= 0.03 m
Area= 3.14*(0.03)²/4
Area= 7.065*10^-4
Flow rate = 7.065*10^-4*1.12E-3
Flow rate= 0.79128*10^-3 Ns
For the flow rate of air in pipe.
Flow rate = 7.065*10^-4*1.8E-5
Flow rate =1.2717*10^-3 Ns
Answer:
I think it's 23 ohms.
Explanation:
Not entirely sure about it.
hope this helps
Answer: The electric field decreases because of the insertion of the Teflon.
Explanation:
If the charge on the capacitor is held fixed, the electric field as a consequence of this charge distribution (directed from the positive charged plate to the negative charged one remains unchanged.
However, as the Teflon is a dielectric material, even though doesn't allow the free movement of the electrons as an answer to an applied electric field, it allows that the electrons be displaced from the equilibrium position, leaving a local negative-charged zone close to the posiitive plate of the capacitor, and an equal but opposite charged layer close to the negative plate.
In this way, a internal electric field is created, that opposes to the external one due to the capacitor, which overall effect is diminishing the total electric field, reducing the voltage between the plates, and increasing the capacitance proportionally to the dielectric constant of the Teflon.
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