Fact
Explanation:
<em>If </em><em>wrong </em><em>Im </em><em>sorry </em><em>Correct </em><em>me </em><em>In </em><em>The</em><em> </em><em>c</em><em>om</em><em>m</em><em>ent </em><em>please </em>
Answer:
Explanation:
kindly check the attachment below for detailed explanations. Thanks
Answer:
Your question is lacking some information attached is the missing part and the solution
A) AB = AD = BD = 0, BC = LC
AC = 
B) AB = AD = BC = BD = 0
AC = 
Explanation:
A) Forces in all members due to the load L in position A
assuming that BD goes slack from an inspection of Joint B
AB = 0 and BC = LC from Joint D, AD = 0 and CD = 4L/3 C
B) steps to arrive to the answer is attached below
AB = AD = BC = BD = 0
AC = 
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).
Answer:
The predetermined overhead rate is 42 $/h.
Explanation:
The predetermined overhead rate is calculated by the estimated manufacturing overhead divided by the estimated machine hours.
Predetermined overhead rate = $357000/8500h = 42 $/h