Answer:
5 hours
Step-by-step explanation:
Each person works at a rate 1/100 of wall completed per hour.So five men working at the rate would be 5/100. So, it would...
Im thinking c, im sorry if wrong
<span> 1/3(2x - 3) + 1 = 1/4(3x + 5) - 2
2x/3 - 3/3 + 1 = 3x/4 + 5/4 - 2
2x/3 - 1 + 1 = 3x/4 + 5/4 - 2
2x/3 - 3x/4 - 0 = 3x/4 - 3x/4 + 5/4 - 2
2x*4/3*4 - 3x*3/4*3 = 0 + 5*1/4*1 - 2*4/1*4
8x/12 - 9x/12 = 5/4 - 8/4
(8x - 9x)/12 = (5 - 8)/4
-x/12 = -3/4
-x/12 * 12 = -3/4 * 12
-x = -36/4
-x * -1 = -36/4 * -1
x = 36/4
x = 9
Done
For check the answer
let x = 9
1/3(2[9] - 3) + 1 = 1/4(3[9] + 5) - 2
1/3(18 - 3) + 1 = 1/4(27 + 5) - 2
1/3(15) + 1 = 1/4(32) - 2
15/3 + 1 = 32/4 - 2
15/3 + 3/3 = 32/4 - 8/4
18/3 = 24/4
6 = 6
therefor
x = 9 is a correct answer</span>
Answer: 7/24
Step-by-step explanation:
11/8 - 5/8=
= 11/8 - 5/8
= 11/12 + -5/8
= 22/24 + -15/24
= 22 + -15/<u>/24</u>
= 7/24
decimal form = 0.291667.
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886