Answer:

Explanation:
The Brinell Hardness is obtained from the following formula:

Where
is the load measured in kilograms-force,
is the diameter of indenter measured in millimeters and
is the diameter of indentation measured in millimeters.
![HB=\frac{2\cdot (1000\,kgf)}{\pi\cdot (10\,mm)^{2}}\cdot \left[ \frac{1}{1-\sqrt{1-\frac{(2.50\,mm)^{2}}{(10\,mm)^{2}} } } \right ]](https://tex.z-dn.net/?f=HB%3D%5Cfrac%7B2%5Ccdot%20%281000%5C%2Ckgf%29%7D%7B%5Cpi%5Ccdot%20%2810%5C%2Cmm%29%5E%7B2%7D%7D%5Ccdot%20%5Cleft%5B%20%5Cfrac%7B1%7D%7B1-%5Csqrt%7B1-%5Cfrac%7B%282.50%5C%2Cmm%29%5E%7B2%7D%7D%7B%2810%5C%2Cmm%29%5E%7B2%7D%7D%20%7D%20%7D%20%20%5Cright%20%5D)

Answer:
d. To Murrow, Hitler was a threat to all of civilization
Explanation:
For Murrow, Hitler's rise was a serious problem and a major threat to the entire civilization. For this reason, he believed that covering news about Hitler's advance and the battles of Nazi Germany was essential, even if the American population did not see Hitler as a threat and the European population, believed that these reprotations were only a way to denigrate the image of the continent to the world.
For Murrow reporting on Hitler's actions was as important as reporting on natural disasters.
Answer:
The maximum discharge rate of water is 4.6 L/s
Explanation:
Given data:
d=diameter=8 m
h=height=3 m
The mathematical expression for the theoritical velocity is:

The maximum discharge can be calculate by:

Here
Cd=coefficient of discharge=0.855

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).
the function is to provide sealed combustion so that the loss of gas is minimized