Answer:
Farmers who use conventional tillage use compost more than other farmers.
Explanation:
Convectional tillage is good to the environment because it attains the following;
- It increases porosity of the soil
- It loosens the soil thus allowing proper root growth and air exchange
- It is an effective way to incorporate manure and break sod fields
- Tilled soils warm faster in spring
Ethics in production is a subset of business ethic that is meant to ensure that the production function or activities are not damaging to the consumer or the society. Like other ethics there is a certain code of conduct or standards to be followed, however ensuring that the ethics are complied with is often difficult.
<h2>i HOPE IT'S HELP </h2>
Answer:
The pressure drop across the pipe also reduces by half of its initial value if the viscosity of the fluid reduces by half of its original value.
Explanation:
For a fully developed laminar flow in a circular pipe, the flowrate (volumetric) is given by the Hagen-Poiseulle's equation.
Q = π(ΔPR⁴/8μL)
where Q = volumetric flowrate
ΔP = Pressure drop across the pipe
μ = fluid viscosity
L = pipe length
If all the other parameters are kept constant, the pressure drop across the circular pipe is directly proportional to the viscosity of the fluid flowing in the pipe
ΔP = μ(8QL/πR⁴)
ΔP = Kμ
K = (8QL/πR⁴) = constant (for this question)
ΔP = Kμ
K = (ΔP/μ)
So, if the viscosity is halved, the new viscosity (μ₁) will be half of the original viscosity (μ).
μ₁ = (μ/2)
The new pressure drop (ΔP₁) is then
ΔP₁ = Kμ₁ = K(μ/2)
Recall,
K = (ΔP/μ)
ΔP₁ = K(μ/2) = (ΔP/μ) × (μ/2) = (ΔP/2)
Hence, the pressure drop across the pipe also reduces by half of its initial value if the viscosity of the fluid reduces by half of its value.
Hope this Helps!!!
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
Explanation:
Ohm's law is used here. V = IR, and variations. The voltage across all elements is the same in this parallel circuit. (V1 =V2 =V3)
The total supply current is the sum of the currents in each of the branches. (It = I1 +I2 +I3)
Rt = (8 V)/(8 A) = 1 Ω . . . . supply voltage divided by supply current
I3 = 8A -3A -4A = 1 A . . . . supply current not flowing through other branches
R1 = (8 V)/(3 A) = 8/3 Ω
R2 = (8 V)/(4 A) = 2 Ω
R3 = (8 V)/(I3) = (8 V)/(1 A) = 8 Ω
V1 = V2 = V3 = 8 V