Answer:
(A) Because the angle of twist of a material is often used to predict its shear toughness
Explanation:
In engineering, torsion is the solicitation that occurs when a moment is applied on the longitudinal axis of a construction element or mechanical prism, such as axes or, in general, elements where one dimension predominates over the other two, although it is possible to find it in diverse situations.
The torsion is characterized geometrically because any curve parallel to the axis of the piece is no longer contained in the plane initially formed by the two curves. Instead, a curve parallel to the axis is twisted around it.
The general study of torsion is complicated because under that type of solicitation the cross section of a piece in general is characterized by two phenomena:
1- Tangential tensions appear parallel to the cross section.
2- When the previous tensions are not properly distributed, which always happens unless the section has circular symmetry, sectional warps appear that make the deformed cross sections not flat.
Explanation:
Anodizing :
Anodizing is the surface protection process from the environment.As we know that due to external environment surfaces get corrodes .By using anodizing process the outer surface of material coated by using different type of coating material.
As the name stand that in the anodizing process there will be anode and oxygen.in this process oxidation of material take place .
Oxides of aluminium and magnesium are stable that is why they anodized by this process.
Answer: True
Explanation:
Engineering stress is the applied load divided by the original cross-sectional area of a material. It is also known as nominal stress. It can also be defined as the force per unit area of a material. Engineering Stress is usually in large numbers.
While Engineering strain is the amount that a material deforms per unit length in a tensile test. It can also be defined as extension per unit length. It has no unit as it is a ratio of lengths. Engineering Strain is in small numbers.
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.
Answer:
- Functional (Centralized) Organization
- Divisional Organization
- Team-Based Organization
- Product-Based Organization
- Modular Organization
- Matrix Organization
Explanation:
Organization structure:
refers to the idea of how people are supposed to work and coordinate in an organization to maintain a healthy and effective work environment.
There are various types of organizational structures which depends on several factors. There is no single best organization structure. Each structure has its own advantages and disadvantages. In order to select a structure the organization's vision, mission, culture values, goals are to be identified first.