Answer:
foundation is ........see more
Answer:
The solution code is written in Java.
- Scanner input = new Scanner(System.in);
- System.out.print("Enter operator: ");
- String operator = input.nextLine();
- System.out.print("Enter first integer: ");
- int num1 = input.nextInt();
- System.out.print("Enter second integer: ");
- int num2 = input.nextInt();
-
-
- int result = 0;
-
- switch(operator){
- case "+":
- result = num1 + num2;
- break;
- case "-":
- result = num1 - num2;
- break;
- case "*":
- result = num1 * num2;
- break;
- case "/":
- result = num1 / num2;
- break;
- default:
- System.out.println("Invalid operator");
-
- }
-
- System.out.println(result);
Explanation:
To ask for the user input for two whole numbers and an operator, we can use Java Scanner class object. Since the input operator is a string, we can use nextLine() method to get the operator string (Line 3). We use nextInt() method to get whole number input (Line 5 & 7).
Next we use the switch keyword and pass the operator into the switch structure to determine which case statement should be executed. For example, if the input operator is "*" the statement "<em>result = num1 * num2;</em>
" will run and multiply <em>num1</em> with <em>num2. </em>
Answer:
For the Top Side
- Strain ε = 0.00021739
- Elongation is 0.00260868 cm
For The Right side
- Strain ε = 0.00021739
-Elongation is 0.00347826 cm
Explanation:
Given the data in the question;
Length of the squared titanium plate = 12 cm by 12 cm = 0.12 m by 0.12 m
Thickness = 5 mm = 0.005 m
Force to the Top F
= 15 kN = 15000 Newton
Force to the right F
= 20 kN = 20000 Newton
elastic modulus, E = 115 GPa = 115 × 10⁹ pascal
Now, For the Top Side;
- Strain = σ/E = F
/ AE
we substitute
= 15000 / ( 0.12 × 0.005 × (115 × 10⁹) )
= 15000 / 69000000
Strain ε = 0.00021739
- Elongation
Δl = ε × l
we substitute
Δl = 0.00021739 × 12 cm
Δl = 0.00260868 cm
Hence, Elongation is 0.00260868 cm
For The Right side
- Strain = σ/E = F
/ AE
we substitute
Strain = 20000 / ( 0.12 × 0.005 × (115 × 10⁹) )
= 20000 / 69000000
Strain ε = 0.000289855
- Elongation
Δl = ε × l
we substitute
Δl = 0.000289855× 12 cm
Δl = 0.00347826 cm
Hence, Elongation is 0.00347826 cm
Answer:
To prepare and issue notices and agendas of all meetings in consultation with the chairman, and to ensure that any background papers are available well before the meeting. To attend and take the minutes of every committee meeting. To circulate minutes to all committee members, and to conduct the correspondence
Explanation:
I think you want to say roles.
Answer:
See attached pictures.
Explanation:
See attached pictures for detailed explanation.