Answer:
Option A - fail/ not fail
Explanation:
For this given problem, if the yield strength is now 45 ksi, using Distortion Energy Theory the material will _fail______ and using the Maximum Shear Stress Theory the material will ___not fail_______
Answer:
What's your question?
Explanation:
I'm not able to understand it....
Sorry.
The project or the site manager is responsible for monitoring or verifying the aspects of the construction process.
The site or the project manager is the individual that is responsible for the adherence to quality and guidance on the construction site.
The site or project manager has the following tasks
- ensuring safety on the site
- Monitoring the progress or the work that is being done
- Sourcing materials
- Solving problems
In conclusion, the project manager monitors and verifies aspects of the construction process.
Read more on brainly.com/question/24887827?referrer=searchResults
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number
Answer:
Everything I got what you need