Each bus was filled with 54 students
Amount charged for downloading individual songs = x dollars
Amount charged for downloading an entire album = y dollars
In respect to person A:
6x + 2y = 25.92
3x + y = 12.96
y = 12.96 - 3x
In respect to person B:
4x + 3y = 33.93
Putting the value of y from the first equation in the second, we get
4x + 3(12.96 - 3x) = 33.93
4x + 38.88 - 9x = 33.93
- 5x = - 4.95
x = 0.99 dollars
Putting the value of x in the first equation, we get
y = 12.96 - 3x
= 12.96 - 2.97
= 9.99 dollars
<span>#include <iostream>
using namespace std;
class InventoryTag {
public:
InventoryTag();
int getQuantityRemaining() const;
void addInventory(int numItems);
private:
int quantityRemaining;
};
InventoryTag::InventoryTag() {
quantityRemaining = 0;
}
int InventoryTag::getQuantityRemaining() const {
return quantityRemaining;
}
void InventoryTag::addInventory(int numItems) {
if (numItems > 10) {
quantityRemaining = quantityRemaining + numItems;
}
}
int main() {
InventoryTag redSweater;
int sweaterShipment = 0;
int sweaterInventoryBefore = 0;
sweaterInventoryBefore = redSweater.getQuantityRemaining();
sweaterShipment = 25;
cout << "Beginning tests." << endl;
// FIXME add unit test for addInventory
/* Your solution goes here */
cout << "Tests complete." << endl;
return 0;
}</span>
Answer:

Given:
- area = 18 cm²
- base = 6 cm
- height = (h + 1) cm
Substitute the given values into the equation and solve for h:



expand using distributive property of addition
:

subtract 3 from both sides:

divide both sides by 3:

<u>To verify</u>:
Half of the base is 3 cm.
If h=5, then the height of the triangle is 6 cm.
Multiplying 3 by 6 is 18.
This matches the given area, so we can verify that h = 5.
Answer:
The reasonable prediction for successful rolls is 4.
Step-by-step explanation:
Assuming the rolling cube is a fair 6 sided cube, so the probability of success of one roll is given as


The total success is given as

For 24 rolls it is given as

So the reasonable prediction for successful rolls is 4.