Answer: it triples by 3 so 15,45, 135
Step-by-step explanation: this is by 3 because it goes on by 15,45,135
Answer:
See below
Step-by-step explanation:
You just need 1/4 of everything:
1/4 c peanut butter
1/4 c brown sugar
1/4 c gran sugar
1/4 c butter
1/2 egg
1/4 tsp baking soda
1/4 tsp baking powder
1/4 tsp vanilla
5/8 c flour
Answer:
-2
Step-by-step explanation:
Subtracting a negative number is the same as adding it, so this is basically just negative 8 plus 6, which is -2. Don't know who was right though, you kinda left that part of the question out.
A^2 + b^2 = c^2
6^2 + 8^2 = c^2
36 + 8^2 = c^2
36 + 64 = c^2
100 = c^2
√100 = c
10 = c
hope this helped, pls mark brainliest :)
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.