Answer:
the diameter of a tube is 1 3/4. How much is radius
Answer:

Step-by-step explanation:
,
If One ball is drawn, its color is recorded, and it is replaced in the urn. Then another ball is drawn and its color is recorded.
The 25 Possible outcomes of this experiment are listed below:

The tree diagram of this event is also attached.
Answer: The discriminant is the part of the quadratic formula underneath the square root symbol: b²-4ac. The discriminant tells us whether there are two solutions, one solution, or no solutions.
Answer:
Answer is B. Y=31
Step-by-step explanation:
4y + 228 = 352
(4)(y) = 352 -228
y = 124/4
y = 31
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.