Answer:
1000
Step-by-step explanation:
100 times 10 = 1000
Answer:
x = -2
Step-by-step explanation:
10x+8=3x-6
subtract 10x-3x
7x+8= -6
subtract -6-8
7x=-14
divide 7 into -14
x = -2
Hope this helps!
He bought three $10 shirts and six $7 shirts.
<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:
q8h dosage = 112.5mg
Step-by-step explanation:
Given
Child Weight = 22.5 kg
Daily Intravenous Dosage = 40mg/kg
Type of Dose = q8h
Required
Calculate the q8h per dose
We start by calculating the total daily dosage in mg
This is calculated by multiplying the child weight by the intravenous dosage
Daily Dosage = 22.5kg * 40mg/kg
Daily Dosage = 900mg
This implies that the body weight requires 900 mg daily
Next is to calculate the q8h dosage
q8h means every 8 hours.
q8h dosage = 900mg/8
q8h dosage = 112.5mg