Answer:
Step-by-step explanation:
7+4y=7-5y+54
Collecting like terms
4y + 5y = 7 - 7 + 54
9y = 54
y = 54/9
y = 6
Answer:
Step-by-step explanation:
surface area of cuboid=2(l*b+b*h+h*l)
=2(15*15+15*7+7*15)
=2(225+105+105)
=2*435
=870
Cost of walnuts = 45 cents per pound
Weight of walnuts in mixture = x pounds
So, total cost of walnuts in the mixture = 45x
This gives the cost in cents. The cost in dollars will be = 0.45x
Cost of pecans = 60 cents per pound
Since total weight of the mixture is 90 pounds. The weight of pecans in the mixture will be (90 - x) pounds.
So, total cost of pecans in the mixture will be = 60 (90 - x)
This gives the cost in cents, the cost in dollars will be = 0.6 (90 - x)
x pounds of walunts and (90-x) pounds of pecans are mixed to produce a mixture to sell at 55 cents per pound. So,we can set up the equation for this case as:
Cost of Walnuts + Cost of Pecans = Cost of Mixture

Using this equation, we can find the weight of walnuts, using x we can also find the weight of pecans. From weights we can then calculate the cost of walnuts and pecans used in the mixture.
That doesn’t give us enough information. there must be something else on your assignment you’re forgetting to give us
Answer:
(a) 4i times
(b) "i × n" times
Step-by-step explanation:
(a) Given the algorithm segment;
for i := 1 to 4, (Outer loop)
for j := 1 to i (Inner loop)
next j,
next i
The inner loop runs for i times, while the outer loop runs for 4 times.
The total times the inner loop would run when the entire algorithm is run is:
= i × 4
= 4i times
(b) Given the algorithm segment;
for i := 1 to n, (Outer loop)
for j := 1 to i (Inner loop)
next j,
next i
Where n is a set of positive integers.
The inner loop runs for "i" times, while the outer loop runs for "n" times.
The total times the inner loop would run when the entire algorithm is run is:
= i × n
= "i × n" times