Answer:
the cycle is on the power just before the exhaust as both the valves are closed
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.
Answer:
- the capacity of the pump reduces by 35%.
- the head gets reduced by 57%.
the power consumption by the pump is reduced by 72%
Explanation:
the pump capacity is related to the speed as speed is reduces by 35%
so new speed is (100 - 35) = 65% of orginal speed
speed Q ∝ N ⇒ Q1/Q2 = N1/N2
Q2 = (N2/N1)Q1
Q2 = (65/100)Q1
which means that the capacity of the pump is also reduces by 35%.
the head in a pump is related by
H ∝ N² ⇒ H1/H2 = N1²/N2²
H2 = (N2N1)²H1
H2 = (65/100)²H1 = 0.4225H1
so the head gets reduced by 1 - 0.4225 = 0.5775 which is 57%.
Now The power requirement of a pump is related as
P ∝ N³ ⇒ P1/P2 = N1³/N2³
P2 = (N2/N1)³P1
H2 = (65/100)²P1 = 0.274P1
So the reduction in power is 1 - 0.274 = 0.725 which is 72%
Therefore for a reduction of 35% of speed there is a reduction of 72% of the power consumption by the pump.
Answer:
V = 0.5 m/s
Explanation:
given data:
width of channel = 4 m
depth of channel = 2 m
mass flow rate = 4000 kg/s = 4 m3/s
we know that mass flow rate is given as

Putting all the value to get the velocity of the flow


V = 0.5 m/s