Answer:
type of study design is Prospective cohort study
Explanation:
- This study follows overtime in a group of similar people who differ from some of the factors in the study to determine how factors may affect the outcome rate.
- Tests may vary depending on the hypothesis given by Cretin patients who are cigarette patients, who are most likely to be smokers, then most likely to be over 20 years of age, with a high rate of lung cancer.
- The effective cause of the disease is determined by the method of screening of the individuals below.
Answer:
The surface ocean currents have a strong effect on Earth's climate. ... However, these areas do not constantly get warmer and warmer, because the ocean currents and winds transport the heat from the lower latitudes near the equator to higher latitudes near the poles.
Answer:
The required pumping head is 1344.55 m and the pumping power is 236.96 kW
Explanation:
The energy equation is equal to:

For the pipe 1, the flow velocity is:

Q = 18 L/s = 0.018 m³/s
D = 6 cm = 0.06 m

The Reynold´s number is:


Using the graph of Moody, I will select the f value at 0.0043 and 335339.4, as 0.02941
The head of pipe 1 is:

For the pipe 2, the flow velocity is:

The Reynold´s number is:


The head of pipe 1 is:

The total head is:
hi = 1326.18 + 21.3 = 1347.48 m
The required pump head is:

The required pumping power is:

Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).