Answer:
So the first one i think is A. The second is 2, and that i do know
Explanation:
Answer:
computers
Explanation:
it is because other remaining are not able to access network
Answer:
int costOfBusRental;
int maxBusRiders;
int costPerRider;
costPerRider = costOfBusRental/maxBusRiders;
Explanation:
The costPerRider is the total cost of renting the bus (costofBusRental) divided by all the bus users (maxBusRiders). So we declare the three variables to be of type int as required by the question.