Answer:
goodman = 0.694
life of beam = 211597
Explanation:
alternating stress = 48 kpsi
mean stress = 24 kpsi
ultimate strength = 100 kpsi
endurance limit = 40 kpsi
goodman:
= 
= 
= 0.24 + 1.2 = 
N = 1/1.44
N = 0.694
2. check attachment for diagram
Log(N)-3/3 = log90 - log48/log90 - log40
Log(N)-3/3 = 0.77517
Log N = 5.325509
N = 10^(5.325509)
N = 211597
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: It is a nominal rate per year
Answer:
B
Explanation:
A robot's work envelope is its range of movement. It is the shape created when a manipulator reaches forward, backward, up and down. These distances are determined by the length of a robot's arm and the design of its axes. ... A robot can only perform within the confines of this work envelope.