Nine days. You can divide 108 by 36, to get how many times she has to read 36 pages, which is 3. Then you multiply that by 3, because she uses 3days for every 36 pages. 3x3=9
Answer:
By multiplying the run by the slope, we get the rise value
Step-by-step explanation:
Mathematically. we have
slope = rise/run
Now, given that we know the run and we have the value of the slope, how can we get the rise
To get the rise, we simply have to multiply the run by the value of the slope
Hence, multiplying the run by the value of the slope will give the value of the vertical distance which is the rise
Hi there! The cable bill is a portion of Milena's take-home pay. To find out how much her cable bill costs, all you have to do is multiply 1,200 by 12%. We multiply price and percentage together for problems like these. 1,200 * 12% (0.12) is 144. There. Milena's monthly cable bill is $144.
The answer is B. 10 9/12 + 2 1/12= 12 10/12. 12÷2=6 10÷2=5 making the answer 12 5/6
Using pseudocode:
printArray(arr[], integers)
DECLARE integers
integers = SizeOf(arr)
FOR i = 1 to integers // loop from 1 to the number of elements in arr[]
print(i)
print('')
i = i + 1
ENDFOR
END