Answer:
The original length of the specimen
Explanation:
Original diameter = 30 mm
Final diameter = 30.04 mm
Change in diameter Δd = 0.04 mm
Final length = 105.20 mm
Elastic modulus E = 65.5 G pa = 65.5 × M pa
Shear modulus G = 25.4 G pa = 25.4 × M pa
We know that the relation between the shear modulus & elastic modulus is given by
This is the value of possion's ratio.
We know that the possion's ratio is given by
0.00476
Final length = 105.2 m
Original length
This is the original length of the specimen.
Answer:
hello below is missing piece of the complete question
minimum size = 0.3 cm
answer : 0.247 N/mm2
Explanation:
Given data :
section span : 10.9 and 13.4 cm
minimum load applied evenly to the top of span : 13 N
maximum load for each member ; 4.5 N
lets take each member to be 4.2 cm
Determine the max value of P before truss fails
Taking average value of section span ≈ 12 cm
Given minimum load distributed evenly on top of section span = 13 N
we will calculate the value of by applying this formula
= = 1.56 * 10^-5
next we will consider section ; 4.2 cm * 0.3 cm
hence Z (section modulus ) = BD^2 / 6
= ( 0.042 * 0.003^2 ) / 6 = 6.3*10^-8
Finally the max value of P( stress ) before the truss fails
= M/Z = ( 1.56 * 10^-5 ) / ( 6.3*10^-8 )
= 0.247 N/mm2
Answer:
to be or not to be
Explanation:
Vivi is a drummer for a band. She burns 756756756 calories while drumming for 333 hours. She burns the same number of calories each hour.
Answer:
The invention of the pendulum-driven ___<u>clocks</u>___ in the 1600s paved the way for a new industrial era.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<