Hey there!
For this problem, I would assume that you must make your own chart of values. You can do this by simply plugging in numbers like 1, 2, 3, etc... Since your graph won't be linear, you might want to do some negative numbers, as well.
Also because your graph isn't linear, you might want to figure out or determine on your own just how far your curve will go. You can then figure out how many times you need to plug in an additional numbers for your function to then graph.
I've attached a digital graph of this function, perhaps you can find it useful.
Hope this helped you out! :-)
Answer:
(1.25c) + (1p) ≥ 25
c is the amount of chocolate chip cookies
p is the amount of peanut butter cookies
Answer:
24 hours
Step-by-step explanation:
The computation of the number of hours taken by Bobby to build the robot by himself is shown below:
Given that
Bobby could take 12 hours
Together they could build in 8 hours
So based on the above information
the number of hours taken by Bobby to build the robot by himself is
Let us assume the above line be x
So,

x = 24 hours
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.