-4, -2, -1, -0.8, 0.8, 3, 10
Answer:
D
Step-by-step explanation:
You want to leave a 15% tip on a meal that cost $15.77.
First, convert the 15% to an actual number that can be used in a calculation. For percents,this is always done by simply dividing the percent (in this case 15%) by 100%.So, the conversational term "15%" becomes 15% / 100% = 0.15 in terms of a real mathematical number.
Second, you need to find out what 15% of your $15.77 meal cost is.This is always done by multiplying 0.15 by $15.77, or
0.15 x $15.77=$2.37.
So, the amount of tip you are going to leave is $2.37.
This makes the total cost of your meal (to write on your charge slip or other payment)
$15.77 + $2.37 = $18.14
$18.14 is your answer
Answer:
ok
Step-by-step explanation:
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