Answer:
square cross section. The bar is made of a 7075-T6 aluminum alloy which has a yield strength of 500 MPa, a tensile strength of 575 MPa, and a fracture toughness of 27.5 MPaâm.
Required:
a. What is the nominal maximum tensile stress on the bar?
b. If there were an initial 1.2 mm deep surface crack on the right surface of the bar, what would the critical stress needed to cause instantaneous fast fracture of the bar be?
Answer:
a) 280MPa
b) -100MPa
c) -0.35
d) 380 MPa
Explanation:
GIVEN DATA:
mean stress 
stress amplitude 
a) 
--------------1

-----------2
solving 1 and 2 equation we get

b) 
c)
stress ratio

d)magnitude of stress range

= 280 -(-100) = 380 MPa
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}
Performs math operations = calculator
view planets, stars, and objects in space = telescope / measure the length of a piece of paper = ruler / study a petri dish containing bacteria = microscope