Yes indeed it is. Your correct
To solve this problem, first we have to figure out how many total rolls Hanna buys.
3 packs*36 rolls in each pack = 108 total rolls
2 packs*24 rolls in each pack = 48 total rolls
108 rolls + 48 rolls = 156 rolls.
Next, it says that Hanna uses 8 rolls of film. To model this in our expression, we need to subtract 8 rolls from our total amount.
156-8 = 146 rolls
Hanna has 146 rolls left.
Answer:
24 purple jelly beans
Step-by-step explanation:
We are told in the question that;
Lucas had a mix of red and purple jelly beans. There were 2 red jelly beans for every 3 purple jelly beans.
The results in a ratio
2:3
Where 2 represented red jelly beans
3 represented purple jelly beans
Total number of jelly beans = 40 jelly beans.
The number of purple jelly beans that we have =
3/( 2 + 3) × 40
= 3/5 × 40
= 3 × 8
= 24.
Hence, there are 24 purple jelly beans in the bag.
Answer:
V = 100π
Step-by-step explanation:
The volume of a cone is V = (
)
1) 
2) 
3) 100π
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.