X - 9y = -45 i’m not sure what line ? but this is in standard form
Answer:
10 to the power 3
Step-by-step explanation:
10 to the power 6 divided by 10 to the power 3 is 10 to the power 3.
The six scores have to average out to the mean, so their sum has to be six times the mean. Since the sum of the first five is 5 more than 5 times the mean, the remaining score must be 5 less than the mean.
Answer: 5 points below the mean
Answer:
$18
Step-by-step explanation:
Let's subtract the lunch from the trip total to get the remainding cost!
36.50 - 9.50 = $27
Now let's set up an equation to figure out the amount of the entrance ticket and the gift coupon!
let's have x = the entrance ticket
27 = x + 1/2(x) -----------> 1/2 is next to x, because the gift coupon is 1/2, or 50% of the entrance ticket! Now solve for x!
27 = 3/2x
(2/3) 27 = 3/2x (2/3)
18 = x, so the entrance ticket is $18!
Answer:
II. int z;
Step-by-step explanation:
int z;
is the best option, because on the next line you will define the variable as
z = (x + y) / 2;
you can also use int z=0; but it is not necessary according to the code segment given.