Answer:
option B is correct. Fracture will definitely not occur
Explanation:
The formula for fracture toughness is given by;
K_ic = σY√πa
Where,
σ is the applied stress
Y is the dimensionless parameter
a is the crack length.
Let's make σ the subject
So,
σ = [K_ic/Y√πa]
Plugging in the relevant values;
σ = [50/(1.1√π*(0.5 x 10^(-3))]
σ = 1147 MPa
Thus, the material can withstand a stress of 1147 MPa
So, if tensile stress of 1000 MPa is applied, fracture will not occur because the material can withstand a higher stress of 1147 MPa before it fractures. So option B is correct.
Answer:The Urban heat island temperature will be REDUCED.
Two Impacts of Rooftop gardens
1) provision of shade against Sunlight.
2) It helps to purify the air around the building.
Explanation: Rooftop gardens are gardens made on top of the roofs of buildings, it is a Green initiative aimed at helping to improve the overall Environment.
Rooftop gardens have several significant benefits which includes
Reduction of the surrounding temperatures and the Urban heat Island temperatures.
Rooftop gardens helps to shade the roof from the direct impacts of harsh weather conditions.
Generally, plants are known as air purifiers as they remove the excess Carbondioxide around the environment through photosynthesis, and they also help to release water vapor which will help to improve the humidity of the environment.
The C++ code that would draw all the iterations in the selection sort process on the array is given below:
<h3>C++ Code</h3>
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, temp1, temp2;
int string2[16] = { 0, 4, 2, 5, 1, 5, 6, 2, 6, 89, 21, 32, 31, 5, 32, 12 };
_Bool check = 1;
while (check) {
temp1 = string2[i];
temp2 = string2[i + 1];
if (temp1 < temp2) {
string2[i + 1] = temp1;
string2[i] = temp2;
i = 0;
} else {
i++;
if (i = 15) {
check = !check;
}
}
}
return 0;
}
Read more about C++ programming here:
brainly.com/question/20339175
#SPJ1