Answer:
They were very angry about her helping the colonists.
Step-by-step explanation:
I'm assuming you mean how many mph when you refer to how fast the car was going.
So 300 km = 1.5 hrs
1.) Find the number of km per hour
Since we have the equation 300km = 1.5hr, we can just divide 1.5 (to isolate the number of hours) on both sides.
You should get 200 km = 1 hour
2.) Convert km to miles
To do this, you must know the conversion 1 km = 0.621371192 miles
So to convert 200 km to miles, just multiply 200 x 0.621371192.
You should get 124.274238.
That means the Ferrari drove at a pace of roughly 124 mph :)
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.