Answer :
<h3>Flow rate in pipe B is = 0.3094

</h3>
Explanation:
Given :
Length of pipe A
m
Length of pipe B
m
Flow rate through pipe A 
Diameter of pipe
m
Velocity from pipe A,



Here, head loss is same because height is same.




Now rate of flow from pipe B is,



disconnectedness, disconnection, break, lack of unity, disruption, interruption, lack of coherence, disjointedness.
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}