Answer:
45 Mpa
Explanation:
The maximum shear stress,
is given by

Where T is the torque and d is the diameter.
Substituting 29820.586 N.m for T and 0.15m for d then we obtain

Answer:
prove that | S | = | E | ; every element of S there is an Image on E , while not every element on E has an image on S
Explanation:
Given that S = { p q |p, q are prime numbers greater than 0}
E = {0, −2, 2, −4, 4, −6, 6, · · · }
To prove by constructing a bijection from S to E
detailed solution attached below
After the bijection :
<em>prove that | S | = | E |</em> : every element of S there is an Image on E , while not every element on E has an image on S
∴ we can say sets E and S are infinite sets
Answer:
subjective im pretty sure
Explanation:
Answer:
cout<<"''<<user_word<<"' "<<user_number;
Explanation:
The above question was answered using C++ programming language.
The keyword cout represents print and it carries out print operation only.
It prints all variable in front of it.
Assume the values of user_word and user_number to be Charles and 20, respectively.
The output of the above instruction would be
'Charles' 20 just as it is in the sample output in the question.
In java programming language, it is
System.out.print("'"+user_word+"' "+user_number);
In Qbasic, it is
PRINT "'"+user_word+"' "+ user_number