A box contains 30 cookies. If the empty box weighs 2 ounces and each cookie weighs 1/2 ounce, what is the weight of the box full of cookies?
Identify the data, condition, and unknown (Polya's components).
Data: The box contains 30 cookies.
Condition: The empty box weighs 2 ounces.
Each cookie weighs 1/2 ounce.
Unknown: The weight of the full box of cookies is unknown
Computer Science & Information Technology
You might also like to view...
Grouped objects are saved as ________ files
A) picture B) template C) text D) add-in
Computer Science & Information Technology
Given the array: int hours[8]; which for loop will cycle through each value correctly and assign the values: 1, 2, 3, 4, 5, 6, 7, 8 ?
```A. for(int i=0; i<8; ++i); { hours[i] = i; } B. for(int i=0; i<8; ++i){ hours[i+1] = i; } C. for(int i=0; i<8; ++i){ hours[i] = i + 1; } D. for(int i=0; i<7; ++i){ hours[i] = i + 1; }```
Computer Science & Information Technology