Hello,
What is the ID Zoom for?
Like what in particular???
Answer:
1788.9 MPa
Explanation:
The magnitude of the maximum stress (σ) can be calculated usign the following equation:
<u>Where:</u>
<em>ρ: is the radius of curvature = 2.5x10⁻⁴ mm (0.9843x10⁻⁵ in)</em>
<em>σ₀: is the tensile stress = 100x10⁶ Pa (14500 psi) </em>
<em>2a: is the crack length = 4x10⁻² mm (1.575x10⁻³ in) </em>
Hence, the maximum stress (σ) is:
Therefore, the magnitude of the maximum stress is 1788.9 MPa.
I hope it helps you!
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).
Answer:
250.7mw
Explanation:
Volume of the reservoir = lwh
Length of reservoir = 10km
Width of reservoir = 1km
Height = 100m
Volume = 10x10³x10³x100
= 10⁹m³
Next we find the volume flow rate
= 0.1/100x10⁹x1/3600
= 277.78m³/s
To get the electrical power output developed by the turbine with 92 percent efficiency
= 0.92x1000x9.81x277.78x100
= 250.7MW
Answer:
it allows your dash board to light up you MPH RPM and all the other numbers on the spadomter
Explanat