Answer:
rfvvvgfvbjjjjbvgggvvvhhjjvvvv
Explanation:
hhbbbjbnjjjjjknnnnbcfvhggcvbgffvvhbvbhbbbnbbhhhhj
Answer:
Soil engineering helps in analyzing the structure and composition of the soil of the proposed construction site, thus helping in deciding whether the soil of the proposed construction site or building is worth exploiting.
Answer: The engineering design process emphasizes open-ended problem solving and encourages students to learn from failure. This process nurtures students abilities to create innovative solutions to challenges in any subject! In addition to their involvement in design and development, many engineers work in testing, production, or maintenance. These engineers supervise production in factories, determine the causes of a component's failure, and test manufactured products to maintain quality.
Explanation:
Answer:
The solution is written in Python
- binary = ""
- decimal = 13
- quotient = int(decimal / 2)
- remainder = decimal % 2
- binary = str(remainder) + binary
-
- while(quotient >0):
- decimal = int(decimal / 2)
- quotient = int(decimal / 2)
- remainder = decimal % 2
- binary = str(remainder) + binary
-
- print(binary)
Explanation:
Firstly, we declare a variable <em>binary</em> and initialize it with an empty string (Line 1). This <em>binary </em>is to hold the binary string.
Next, we declare variable <em>decimal, quotient </em>and<em> remainder </em>(Line 2-4). We assign a test value 13 to decimal variable and then get the first quotient by dividing decimal with 2 (Line 3). Then we get the remainder by using modulus operator, % (Line 4). The first remainder will be the first digit joined with the binary string (Line 5).
We need to repeat the process from Line 3-5 to get the following binary digits. Therefore create a while loop (Line 7) and set a condition that if quotient is bigger than 0 we keep dividing decimal by 2 and calculate the quotient and remainder and use the remainder as a binary digit and join it with binary string from the front (Line 9-11).
At last, we print the binary to terminal (Line 13).
The load is placed at distance 0.4 L from the end of
area.
<h3>What is meant by torque?</h3>
The force that can cause an object to rotate along an axis is measured as torque. Similar to how force accelerates an item in linear kinematics, torque accelerates an object in an angular direction. A vector quantity is torque.
Let the beam is of length L
Now the stress on both the end is the same now we can say that torque on the beam due to two forces must be zero

also, we know that stress at both ends are same


Now from two equations we have

solving the above equation we have

so the load is placed at distance 0.4 L from the end of
area.
The complete question is:
47. the beam is supported by two rods ab and cd that have cross-sectional areas of
and
, respectively. determine the position d of the 6-kn load so that the average normal stress in each rod is the same.
To learn more about torque refer to:
brainly.com/question/20691242
#SPJ4