Answer:
False
Step-by-step explanation:
Multiply 8 by 2 to create the common denominator (which is 16).
Now multiply 4 by 2 to keep the fraction even.
This gives you the fraction 8/16 which is not equivalent to 10/16.
Another way you could write this inequality:
8/16 < 10/16
Let the amount deposited (principal) be x, then the amount after the required time = 2x.
A = P(1 + r/n)^nt: where A is the future value = 2x, P is the principal = x, r is the rate = 0.75%, n is the number of accumulation in a year = 12, t is the number of years.
2x = x(1 + 0.0075/12)^12t
2 = (1 + 0.000625)^12t
log 2 = 12t log (1.000625)
log 2 / log (1.000625) = 12t
1109.38 = 12t
t = 92 years
Answer:
the closest part the mechanic can chose is 0.5 inch
Step-by-step explanation:
fractional sizes given to the nearest 64th of an inch = 1/64 = 0.0156
the closest size to 0.492in = 0.492 + 0.0156 = 0.5076 inches
approximately, the closest part the mechanic can chose is 0.5 inch
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