Answer
given,
l₀ = 50 mm
d₀ = 13.1 mm
l₁ = 53.7 mm
d₁ = 12.6 mm
Area of cross section
![A = \dfrac{\pi}{4}d_0^2](https://tex.z-dn.net/?f=A%20%3D%20%5Cdfrac%7B%5Cpi%7D%7B4%7Dd_0%5E2)
![A = \dfrac{\pi}{4} \times 13.1^2](https://tex.z-dn.net/?f=A%20%3D%20%5Cdfrac%7B%5Cpi%7D%7B4%7D%20%5Ctimes%2013.1%5E2)
A = 134. 782 mm²
The strain is
![\epsilon = \dfrac{l_f-l_0}{l_0}](https://tex.z-dn.net/?f=%5Cepsilon%20%3D%20%5Cdfrac%7Bl_f-l_0%7D%7Bl_0%7D)
![= \dfrac{53.7-50}{50}](https://tex.z-dn.net/?f=%3D%20%5Cdfrac%7B53.7-50%7D%7B50%7D)
= 0.074
the tensile modulus of A356 aluminium is
E = 72.4 GPa
The stress is
σ = εE
= 72.4 × 10⁹ × 0.074
= 5357.6 × 10⁶ Pa
σ = 5357.6 MPa
![UTS = \dfrac{ultimate\ load}{cross\ sectional\ area}](https://tex.z-dn.net/?f=UTS%20%3D%20%5Cdfrac%7Bultimate%5C%20load%7D%7Bcross%5C%20sectional%5C%20area%7D)
![UTS = \dfrac{ultimate\ load}{134.782}](https://tex.z-dn.net/?f=UTS%20%3D%20%5Cdfrac%7Bultimate%5C%20load%7D%7B134.782%7D)
Answer:
Architect
Explanation: You need to be unique and creative to be an architect.
Answer:
b). false
Explanation:
<u>Lean manufacturing</u>
Lean manufacturing, a philosophy developed by Toyota Production System are means to eliminate wastes. They are defined as the techniques or management activities in eliminating wastes and increasing the efficiency inside an organisation.
According to the concept of lean manufacturing, mainly seven types of wastes are identified. They are :
1. Transportation waste
2. Inventory waste
3. Over production
4. Waiting
5. Defects
6. Motion waste
7. Non utilized talent
All these waste affect greatly to the efficiency of an organisation and devalue its services. Lean manufacturing advises to prevent all these waste in order to increase the productivity.
All the management activities and techniques used in lean manufacturing may be different according to the business application but they are all based on the same basic principle of removing wastes and errors and increase efficiency.
The different sectors that are benefiting from lean manufacturing methodology are
Healthcare
Hospitality
Food and Beverage
Government
Manufacturing
Lean manufacturing can be used in different sectors.
Answer:
import java.io.*;
import java.util.Scanner;
public class CountWordsInFile {
public static void main(String[] args) throws IOException {
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter file name: ");
String fileName = keyboard.next();
File file = new File(fileName);
try {
Scanner scan = new Scanner(file);
int count = 0;
while(scan.hasNext()) {
scan.next();
count += 1;
}
scan.close();
System.out.println("Number of words: "+count);
} catch (FileNotFoundException e) {
System.out.println("File " + file.getName() + " not present ");
System.exit(0);
}
}
}