Yes so he shows this by also doing what is called the flow. After this it is complete
Answer:
no
Step-by-step explanation:
you would get this: 149054.555556
Answer:
Distributive Property
Step-by-step explanation:
5y + 2 + 6 + 2y
= 5y + 2(y + 3) + 2 This is the distributive property of multiplication w.r.t. addition
= 6y − y + 2y + 10 − 4 + 2
The distributive property of multiplication with respect to addition is the one which separates each term by using multiplication and then addition.
So we see that 2 is multiplied with y and 3 and then added with the like terms. If there was a minus sign the property would be distributive over subtraction.
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.