Answer:
The amount of Soyabean = 608.82 pounds.
The amount of Oats = 900-608.82 = 291.18 pounds.
Step-by-step explanation:
Given that the Soybean Meal has 46% CP and Oats has 12% CP.
The total amount of ration is 900 lbs of 35% CP.
Let x pounds of Soyabean has been used, so,
the amount of Oats = 900-x lbs.
The CP amount in 900 lbs mixture will be equal to the sum of CP amounts in x lbs Soyabean and 900-x lbs Oats, i.e
35% of 900 = 46% of x + 12% of (900-x)




lbs.
So, the amount of Soyabean = 608.82 pounds.
The amount of Oats = 900-608.82 = 291.18 pounds.
<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:A
Step-by-step explanation:
Side lengths do not adhere to the triangle inequality theorem.