Answer: a). 5
Explanation:
5 > 4
Answer:
2156/9
Explanation:
The question states all the necessary values that we need for the ratio. The company created 2156 board games and 9 card games.
However, what we need to pay attention to here is the order of the ratio.
Because the question is “What is the ratio of the number of board games to the number of card games”, we know that we need to write the ratio so the number of board games is first.
Additionally, ratios can also be written like fractions. The first number of the ratio would be the top number/numerator in fraction form.
Therefore, the ratio of the number of board games to the number of card games is 2156:9
I hope this helps!
Area of a parallelogram is the base times the height
the base is 14 cm
the height is 7 cm
14*7=?
To isolate x, we will first subtract 0.8 from both sides.
0.6x + 0.8 = 1.4
-0.8 -0.8
0.6x = 0.6
Now all we have to do is divide both sides by 0.6, because it is the number besides x.
0.6x/0.6 = 0.6/0.6
x = 1
So you get the answer of x = 1.
Answer:
x=11
Step-by-step explanation:
The switch case works like an if or if-else, where each of the cases are conditionals. Here we have 7 cases and we know that our variable begins with x=5.
First, it enters to case 5 because of x=5, so x+=3, this means we add 3 to the actual value of the variable ⇒ x=8.
At this point, if there's not break the program continues to the next case, executing the statements until a break or the end on the switch is reached.
In this order, the x = 8 and next we add 1 (case 6) ⇒ x=9. We add 2 (case 7) x+=2 ⇒ x=10. Then we rest 1 (case 8) ⇒ x=9 and then we add 1 again as in case 9 ⇒ x=11.