Answer:
The most damaged people are the wisest is a fact
Explanation:
Examples of quality assurance activities include process checklists, process standards, process documentation and project audit. Examples of quality control activities include inspection, deliverable peer reviews and the software testing process. You may like to read more about the quality assurance vs quality control.
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}
Answer:
minimum factor of safety for fatigue is = 1.5432
Explanation:
given data
AISI 1018 steel cold drawn as table
ultimate strength Sut = 63.800 kpsi
yield strength Syt = 53.700 kpsi
modulus of elasticity E = 29.700 kpsi
we get here
= ...........1
here kb and kt = 1 combined bending and torsion fatigue factor
put here value and we get
=
= 12 kpsi
and
= ...........2
put here value and we get
=
= 17.34 kpsi
now we apply here goodman line equation here that is
...................3
here Se = 0.5 × Sut
Se = 0.5 × 63.800 = 31.9 kspi
put value in equation 3 we get
solve it we get
FOS = 1.5432