Answer:
4140 steel contains 0.4% C having higher yield strength and ultimate strength than the 1045 steel contains 0.45% C
Explanation:
we have given 4140 steel contains 0.4% C
we know here that 4140 steel is low steel alloy , and it have low amount of chromium , manganese etc alloying element
and these elements which are present in 4140 steel they increase yield strength and ultimate strength of steel
while in 1045 steel contains 0.45 % c is plain carbon steel
and it do not contain any alloying element
so that 4140 steel contains 0.4% C having higher yield strength and ultimate strength than the 1045 steel contains 0.45% C
Answer:
The British Standards Institution, is the national standards body of the United Kingdom. BSI produces technical standards on a wide range of products and services and also supplies certification and standards-related services to businesses
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);
}
}
Answer:
1. Measure the temperature of the boxes and leave them unconnected.
2. Norton reduces his circuit down to a single resistance in parallel with a constant current source. A real-life Norton equivalent circuit would be continuously wasting power (as heat) as the current source dumps energy into the resistor, even when externally unconnected, while a Thevenin equivalent circuit would sit there doing nothing.
3. The Norton equivalent box would get warm and eventually run out of power. The Thevenin equivalent box would stay at ambient temperature.